Home
last modified time | relevance | path

Searched refs:printf_format (Results 1 – 6 of 6) sorted by relevance

/third_party/mbedtls/scripts/mbedtls_dev/
Dc_build_helper.py52 def generate_c_printf_expressions(c_file, cast_to, printf_format, expressions): argument
62 .format(printf_format, cast_to, expr))
93 cast_to, printf_format, argument
127 cast_to, printf_format,
/third_party/toybox/porting/liteos_a/lib/
Dlib.h130 char *xmprintf(char *format, ...) printf_format;
131 void xprintf(char *format, ...) printf_format;
194 void error_msg(char *msg, ...) printf_format;
195 void perror_msg(char *msg, ...) printf_format;
196 void error_exit(char *msg, ...) printf_format __attribute__((__noreturn__));
197 void perror_exit(char *msg, ...) printf_format __attribute__((__noreturn__));
198 void help_exit(char *msg, ...) printf_format __attribute__((__noreturn__));
/third_party/toybox/lib/
Dlib.h135 char *xmprintf(char *format, ...) printf_format;
136 void xprintf(char *format, ...) printf_format;
201 void error_msg(char *msg, ...) printf_format;
202 void perror_msg(char *msg, ...) printf_format;
203 void error_exit(char *msg, ...) printf_format __attribute__((__noreturn__));
204 void perror_exit(char *msg, ...) printf_format __attribute__((__noreturn__));
205 void help_exit(char *msg, ...) printf_format __attribute__((__noreturn__));
Dportability.h32 #define printf_format __attribute__((format(printf, 1, 2))) macro
34 #define printf_format macro
/third_party/mbedtls/tests/scripts/
Dtest_psa_constant_names.py58 printf_format = '%ld'
61 printf_format = '0x%08lx'
63 cast_to, printf_format,
/third_party/toybox/toys/other/
Di2ctools.c77 printf_format static void confirm(const char *fmt, ...) in confirm()