|
int | cbprintf_package (void *packaged, size_t len, uint32_t flags, const char *format,...) |
| Capture state required to output formatted data later. More...
|
|
int | cbvprintf_package (void *packaged, size_t len, uint32_t flags, const char *format, va_list ap) |
| Capture state required to output formatted data later. More...
|
|
int | cbprintf_fsc_package (void *in_packaged, size_t in_len, void *packaged, size_t len) |
| Convert package to fully self-contained (fsc) package. More...
|
|
int | cbpprintf (cbprintf_cb out, void *ctx, void *packaged) |
| Generate the output for a previously captured format operation. More...
|
|
int | cbprintf (cbprintf_cb out, void *ctx, const char *format,...) |
| *printf-like output through a callback. More...
|
|
int | cbvprintf (cbprintf_cb out, void *ctx, const char *format, va_list ap) |
| varargs-aware *printf-like output through a callback. More...
|
|
int | fprintfcb (FILE *stream, const char *format,...) |
| fprintf using Zephyrs cbprintf infrastructure. More...
|
|
int | vfprintfcb (FILE *stream, const char *format, va_list ap) |
| vfprintf using Zephyrs cbprintf infrastructure. More...
|
|
int | printfcb (const char *format,...) |
| printf using Zephyrs cbprintf infrastructure. More...
|
|
int | vprintfcb (const char *format, va_list ap) |
| vprintf using Zephyrs cbprintf infrastructure. More...
|
|
int | snprintfcb (char *str, size_t size, const char *format,...) |
| snprintf using Zephyrs cbprintf infrastructure. More...
|
|
int | vsnprintfcb (char *str, size_t size, const char *format, va_list ap) |
| vsnprintf using Zephyrs cbprintf infrastructure. More...
|
|