Searched refs:cbvprintf (Results 1 – 12 of 12) sorted by relevance
/Zephyr-latest/lib/libc/minimal/source/stdout/ |
D | fprintf.c | 21 r = cbvprintf(fputc, DESC(stream), format, vargs); in fprintf() 32 r = cbvprintf(fputc, DESC(stream), format, vargs); in vfprintf() 43 r = cbvprintf(fputc, DESC(stdout), format, vargs); in printf() 53 r = cbvprintf(fputc, DESC(stdout), format, vargs); in vprintf()
|
D | sprintf.c | 45 r = cbvprintf(sprintf_out, (void *) (&p), format, vargs); in snprintf() 63 r = cbvprintf(sprintf_out, (void *) (&p), format, vargs); in sprintf() 84 r = cbvprintf(sprintf_out, (void *) (&p), format, vargs); in vsnprintf() 99 r = cbvprintf(sprintf_out, (void *) (&p), format, vargs); in vsprintf()
|
/Zephyr-latest/lib/os/ |
D | cbprintf.c | 17 rc = cbvprintf(out, ctx, format, ap); in cbprintf() 65 return cbvprintf(fputc, stream, format, ap); in vfprintfcb() 82 return cbvprintf(fputc, stdout, format, ap); in vprintfcb() 103 int rv = cbvprintf(str_out, &ctx, format, ap); in vsnprintfcb()
|
D | printk.c | 121 cbvprintf(buf_char_out, &ctx, fmt, ap); in vprintk() 136 cbvprintf(char_out, NULL, fmt, ap); in vprintk() 246 cbvprintf(str_out, &ctx, fmt, ap); in vsnprintk()
|
/Zephyr-latest/lib/libc/picolibc/ |
D | cbprintf.c | 23 int cbvprintf(cbprintf_cb out, void *ctx, const char *fp, va_list ap) in cbvprintf() function
|
/Zephyr-latest/subsys/shell/ |
D | shell_fprintf.c | 36 (void)cbvprintf(out_func, (void *)sh_fprintf, fmt, args); in z_shell_fprintf_fmt()
|
/Zephyr-latest/include/zephyr/sys/ |
D | cbprintf.h | 741 int cbvprintf(cbprintf_cb out, void *ctx, const char *format, va_list ap); 744 int cbvprintf(cbprintf_cb out, void *ctx, const char *format, va_list ap) in cbvprintf() function 816 return cbpprintf_external(out, cbvprintf, ctx, packaged); in cbpprintf()
|
/Zephyr-latest/subsys/tracing/ |
D | tracing_format_common.c | 36 (void)cbvprintf(str_put, (void *)&str_ctx, str, args); in tracing_format_string_put()
|
/Zephyr-latest/cmake/sca/eclair/ECL/ |
D | call_properties.ecl | 27 -call_properties+={"name(cbvprintf)", {"taken()"}} 28 -call_properties+={"name(cbvprintf)", {"taken()"}}
|
/Zephyr-latest/doc/develop/languages/c/ |
D | picolibc.rst | 112 * cbprintf and cbvprintf
|
/Zephyr-latest/tests/unit/cbprintf/ |
D | main.c | 195 rv = cbvprintf(out, &outbuf, format, ap); in prf() 227 rv = cbvprintf(out, &outbuf, format, ap); in rawprf()
|
/Zephyr-latest/subsys/logging/ |
D | log_output.c | 136 length = cbvprintf(out_func, (void *)output, fmt, args); in print_formatted()
|