Home
last modified time | relevance | path

Searched refs:fmt_result (Results 1 – 2 of 2) sorted by relevance

/components/utilities/ulog/syslog/
A Dsyslog.c176 int fmt_result; in syslog_formater() local
226 fmt_result = rt_vsnprintf(log_buf + log_len, ULOG_LINE_BUF_SIZE - log_len, format, args); in syslog_formater()
229 if ((log_len + fmt_result <= ULOG_LINE_BUF_SIZE) && (fmt_result > -1)) in syslog_formater()
231 log_len += fmt_result; in syslog_formater()
/components/utilities/ulog/
A Dulog.c429 static int fmt_result; local
437 fmt_result = rt_vsnprintf(log_buf + log_len, ULOG_LINE_BUF_SIZE - log_len, format, args);
439 if ((log_len + fmt_result <= ULOG_LINE_BUF_SIZE) && (fmt_result > -1))
441 log_len += fmt_result;
457 static int fmt_result; local
468 if ((fmt_result > -1) && (fmt_result <= ULOG_LINE_BUF_SIZE))
470 log_len += fmt_result;
777 int fmt_result; local
796 fmt_result = rt_vsnprintf(log_buf, ULOG_LINE_BUF_SIZE, format, args);
803 if ((fmt_result > -1) && (fmt_result < ULOG_LINE_BUF_SIZE))
[all …]

Completed in 5 milliseconds