Home
last modified time | relevance | path

Searched refs:ap (Results 1 – 16 of 16) sorted by relevance

/scripts/dtc/
Dutil.h28 va_list ap; in die() local
30 va_start(ap, str); in die()
32 vfprintf(stderr, str, ap); in die()
Dchecks.c106 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/
Dutil.c127 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()
Dzconf.y563 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()
Dconfdata.c32 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 …]
Dmenu.c23 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()
Dnconf.c524 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()
Dnconf.gui.c243 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()
Dlkc_proto.h12 P(conf_set_message_callback, void,(void (*fn)(const char *fmt, va_list ap)));
Dmconf.c776 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()
Dzconf.tab.c_shipped2326 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/
Dutil.c600 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/
Dpnmtologo.c421 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()
Dunifdef.c1206 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/
Dgenksyms.c364 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/
Dmodpost.c1799 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()