Searched refs:snprintfcb (Results 1 – 7 of 7) sorted by relevance
/Zephyr-latest/tests/lib/cbprintf_package/src/ |
D | main.c | 63 snprintfcb(compare_buf, sizeof(compare_buf), fmt, __VA_ARGS__); \ 322 snprintfcb(exp_str, sizeof(exp_str), TEST_FMT); in ZTEST() 406 snprintfcb(exp_str, sizeof(exp_str), TEST_FMT); in ZTEST() 472 snprintfcb(exp_str, sizeof(exp_str), TEST_FMT); in ZTEST() 590 snprintfcb(exp_str, sizeof(exp_str), TEST_FMT); in ZTEST() 713 snprintfcb(exp_str, sizeof(exp_str), TEST_FMT); in cbprintf_rw_loc_const_char_ptr() 867 snprintfcb(exp_str, sizeof(exp_str), TEST_FMT); in ZTEST() 914 snprintfcb(exp_str, sizeof(exp_str), TEST_FMT); in ZTEST() 964 snprintfcb(exp_str, sizeof(exp_str), TEST_FMT); in ZTEST()
|
/Zephyr-latest/lib/os/ |
D | cbprintf.c | 85 int snprintfcb(char *str, size_t size, const char *format, ...) in snprintfcb() function
|
/Zephyr-latest/include/zephyr/sys/ |
D | cbprintf.h | 827 #define snprintfcb(str, size, ...) snprintf(str, size, __VA_ARGS__) macro 932 int snprintfcb(char *str, size_t size, const char *format, ...);
|
/Zephyr-latest/tests/subsys/logging/log_msg/src/ |
D | main.c | 255 snprintfcb(str, sizeof(str), TEST_MSG, s8, u, lld, str, lld, iarray); in ZTEST() 348 snprintfcb(str, sizeof(str), TEST_MSG, i, lli, (double)f, &i, d, source); in ZTEST()
|
/Zephyr-latest/tests/unit/cbprintf/ |
D | main.c | 1120 rc = snprintfcb(lbuf, len, "%06d", 1); in ZTEST() 1125 rc = snprintfcb(lbuf, len, "%07d", 1); in ZTEST() 1130 rc = snprintfcb(lbuf, len, "%020d", 1); in ZTEST()
|
/Zephyr-latest/doc/develop/languages/c/ |
D | picolibc.rst | 113 * fprintfcb, vfprintfcb, printfcb, vprintfcb, snprintfcb and vsnprintfcb
|
/Zephyr-latest/doc/services/ |
D | formatted_output.rst | 23 :c:func:`snprintfcb()` to avoid pulling in libc implementations.
|