/scripts/dtc/ |
D | util.h | 28 va_list ap; in die() local 30 va_start(ap, str); in die() 32 vfprintf(stderr, str, ap); in die()
|
D | checks.c | 106 va_list ap; in check_msg() local 107 va_start(ap, fmt); in check_msg() 113 vfprintf(stderr, fmt, ap); in check_msg()
|
/scripts/kconfig/ |
D | util.c | 127 va_list ap; in str_printf() local 129 va_start(ap, fmt); in str_printf() 130 vsnprintf(s, sizeof(s), fmt, ap); in str_printf() 132 va_end(ap); in str_printf()
|
D | zconf.y | 563 va_list ap; in zconfprint() local 566 va_start(ap, err); in zconfprint() 567 vfprintf(stderr, err, ap); in zconfprint() 568 va_end(ap); in zconfprint() 574 va_list ap; in zconf_error() local 578 va_start(ap, err); in zconf_error() 579 vfprintf(stderr, err, ap); in zconf_error() 580 va_end(ap); in zconf_error()
|
D | confdata.c | 32 va_list ap; in conf_warning() local 33 va_start(ap, fmt); in conf_warning() 35 vfprintf(stderr, fmt, ap); in conf_warning() 37 va_end(ap); in conf_warning() 41 static void conf_default_message_callback(const char *fmt, va_list ap) in conf_default_message_callback() argument 44 vprintf(fmt, ap); in conf_default_message_callback() 48 static void (*conf_message_callback) (const char *fmt, va_list ap) = 50 void conf_set_message_callback(void (*fn) (const char *fmt, va_list ap)) in conf_set_message_callback() argument 57 va_list ap; in conf_message() local 59 va_start(ap, fmt); in conf_message() [all …]
|
D | menu.c | 23 va_list ap; in menu_warn() local 24 va_start(ap, fmt); in menu_warn() 26 vfprintf(stderr, fmt, ap); in menu_warn() 28 va_end(ap); in menu_warn() 33 va_list ap; in prop_warn() local 34 va_start(ap, fmt); in prop_warn() 36 vfprintf(stderr, fmt, ap); in prop_warn() 38 va_end(ap); in prop_warn()
|
D | nconf.c | 524 va_list ap; in item_make() local 538 va_start(ap, fmt); in item_make() 541 fmt, ap); in item_make() 542 va_end(ap); in item_make() 564 va_list ap; in item_add_str() local 572 va_start(ap, fmt); in item_add_str() 573 vsnprintf(new_str, sizeof(new_str), fmt, ap); in item_add_str() 574 va_end(ap); in item_add_str() 1210 static void conf_message_callback(const char *fmt, va_list ap) in conf_message_callback() argument 1214 vsnprintf(buf, sizeof(buf), fmt, ap); in conf_message_callback()
|
D | nconf.gui.c | 243 va_list ap; in btn_dialog() local 259 va_start(ap, btn_num); in btn_dialog() 261 btn = va_arg(ap, char *); in btn_dialog() 265 va_end(ap); in btn_dialog()
|
D | lkc_proto.h | 12 P(conf_set_message_callback, void,(void (*fn)(const char *fmt, va_list ap)));
|
D | mconf.c | 776 static void conf_message_callback(const char *fmt, va_list ap) in conf_message_callback() argument 780 vsnprintf(buf, sizeof(buf), fmt, ap); in conf_message_callback()
|
D | zconf.tab.c_shipped | 2326 va_list ap; 2329 va_start(ap, err); 2330 vfprintf(stderr, err, ap); 2331 va_end(ap); 2337 va_list ap; 2341 va_start(ap, err); 2342 vfprintf(stderr, err, ap); 2343 va_end(ap);
|
/scripts/kconfig/lxdialog/ |
D | util.c | 600 va_list ap; in item_make() local 610 va_start(ap, fmt); in item_make() 611 vsnprintf(item_cur->node.str, sizeof(item_cur->node.str), fmt, ap); in item_make() 612 va_end(ap); in item_make() 617 va_list ap; in item_add_str() local 622 va_start(ap, fmt); in item_add_str() 624 avail, fmt, ap); in item_add_str() 626 va_end(ap); in item_add_str()
|
/scripts/ |
D | pnmtologo.c | 421 va_list ap; in die() local 423 va_start(ap, fmt); in die() 424 vfprintf(stderr, fmt, ap); in die() 425 va_end(ap); in die()
|
D | unifdef.c | 1206 va_list ap; in debug() local 1209 va_start(ap, msg); in debug() 1210 vwarnx(msg, ap); in debug() 1211 va_end(ap); in debug()
|
/scripts/genksyms/ |
D | genksyms.c | 364 va_list ap; in concat_list() local 369 for (va_start(ap, start); (n = va_arg(ap, struct string_list *));) { in concat_list() 375 va_end(ap); in concat_list()
|
/scripts/mod/ |
D | modpost.c | 1799 va_list ap; in buf_printf() local 1801 va_start(ap, fmt); in buf_printf() 1802 len = vsnprintf(tmp, SZ, fmt, ap); in buf_printf() 1804 va_end(ap); in buf_printf()
|