函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\vsprintf.c Create Date:2022-07-27 07:09:35
Last Modify:2022-05-21 09:47:42 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:rtc_str

函数原型:static __attribute__((__noinline__)) char *rtc_str(char *buf, char *end, const struct rtc_time *tm, struct printf_spec spec, const char *fmt)

返回类型:char

参数:

类型参数名称
char *buf
char *end
const struct rtc_time *tm
struct printf_specspec
const char *fmt
1788  bool have_t = true, have_d = true
1789  bool raw = false
1790  count等于2
1792  如果check_pointer( & buf, end, tm, spec)则返回:buf
1796  :fmt[count]恒等于'd'
1797  have_t = false
1798  count自加
1799  退出
1800  :fmt[count]恒等于't'
1801  have_d = false
1802  count自加
1803  退出
1806  raw等于fmt[count]恒等于'r'
1808  如果have_dbuf等于date_str(buf, end, tm, raw)
1810  如果have_dhave_t
1812  如果buf小于endbuf等于'T'
1814  buf自加
1816  如果have_tbuf等于time_str(buf, end, tm, raw)
1819  返回:buf
调用者
名称描述
time_and_date