Searched refs:fmt (Results 1 - 21 of 21) sorted by relevance

/scripts/dtc/
H A Dsrcpos.c216 srcpos_verror(struct srcpos *pos, char const *fmt, va_list va) argument
223 vfprintf(stdout, fmt, va);
228 srcpos_error(struct srcpos *pos, char const *fmt, ...) argument
232 va_start(va, fmt);
233 srcpos_verror(pos, fmt, va);
239 srcpos_warn(struct srcpos *pos, char const *fmt, ...) argument
243 va_start(va, fmt);
248 vfprintf(stderr, fmt, va);
H A Ddtc-parser.y30 extern void print_error(char const *fmt, ...);
315 void print_error(char const *fmt, ...)
319 va_start(va, fmt);
320 srcpos_verror(&yylloc, fmt, va);
H A Ddtc-lexer.l52 #define DPRINT(fmt, ...) fprintf(stderr, fmt, ##__VA_ARGS__)
54 #define DPRINT(fmt, ...) do { } while (0)
H A Ddtc.h40 #define debug(fmt,args...) printf(fmt, ##args)
42 #define debug(fmt,args...)
H A Dchecks.c31 #define TRACE(c, fmt, ...) do { } while (0)
91 static inline void check_msg(struct check *c, const char *fmt, ...) __attribute__((format (printf, 2, 3)));
93 static inline void check_msg(struct check *c, const char *fmt, ...) argument
96 va_start(ap, fmt);
103 vfprintf(stderr, fmt, ap);
H A Dflattree.c130 #define ASM_EMIT_BELONG(f, fmt, ...) \
132 fprintf((f), "\t.byte\t((" fmt ") >> 24) & 0xff\n", __VA_ARGS__); \
133 fprintf((f), "\t.byte\t((" fmt ") >> 16) & 0xff\n", __VA_ARGS__); \
134 fprintf((f), "\t.byte\t((" fmt ") >> 8) & 0xff\n", __VA_ARGS__); \
135 fprintf((f), "\t.byte\t(" fmt ") & 0xff\n", __VA_ARGS__); \
H A Ddtc-parser.tab.c_shipped78 extern void print_error(char const *fmt, ...);
1917 void print_error(char const *fmt, ...)
1921 va_start(va, fmt);
1922 srcpos_verror(&yylloc, fmt, va);
/scripts/kconfig/
H A Dutil.c125 void str_printf(struct gstr *gs, const char *fmt, ...) argument
129 va_start(ap, fmt);
130 vsnprintf(s, sizeof(s), fmt, ap);
H A Dlkc.h101 void menu_warn(struct menu *menu, const char *fmt, ...);
133 void str_printf(struct gstr *gs, const char *fmt, ...);
H A Dconfdata.c19 static void conf_warning(const char *fmt, ...)
22 static void conf_message(const char *fmt, ...)
30 static void conf_warning(const char *fmt, ...) argument
33 va_start(ap, fmt);
35 vfprintf(stderr, fmt, ap);
41 static void conf_default_message_callback(const char *fmt, va_list ap) argument
44 vprintf(fmt, ap);
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)) argument
55 static void conf_message(const char *fmt, argument
[all...]
H A Dmenu.c21 void menu_warn(struct menu *menu, const char *fmt, ...) argument
24 va_start(ap, fmt);
26 vfprintf(stderr, fmt, ap);
31 static void prop_warn(struct property *prop, const char *fmt, ...) argument
34 va_start(ap, fmt);
36 vfprintf(stderr, fmt, ap);
H A Dlkc_proto.h12 P(conf_set_message_callback, void,(void (*fn)(const char *fmt, va_list ap)));
H A Dnconf.c529 static void item_make(struct menu *menu, char tag, const char *fmt, ...) argument
545 va_start(ap, fmt);
548 fmt, ap);
569 static void item_add_str(const char *fmt, ...) argument
579 va_start(ap, fmt);
580 vsnprintf(new_str, sizeof(new_str), fmt, ap);
1210 static void conf_message_callback(const char *fmt, va_list ap) argument
1214 vsnprintf(buf, sizeof(buf), fmt, ap);
H A Dzconf.y16 #define printd(mask, fmt...) if (cdebug & (mask)) printf(fmt)
H A Dzconf.tab.c_shipped92 #define printd(mask, fmt...) if (cdebug & (mask)) printf(fmt)
/scripts/mod/
H A Dmodpost.h100 buf_printf(struct buffer *buf, const char *fmt, ...);
185 void fatal(const char *fmt, ...);
186 void warn(const char *fmt, ...);
187 void merror(const char *fmt, ...);
H A Dmodpost.c53 PRINTF void fatal(const char *fmt, ...) argument
59 va_start(arglist, fmt);
60 vfprintf(stderr, fmt, arglist);
66 PRINTF void warn(const char *fmt, ...) argument
72 va_start(arglist, fmt);
73 vfprintf(stderr, fmt, arglist);
77 PRINTF void merror(const char *fmt, ...) argument
83 va_start(arglist, fmt);
84 vfprintf(stderr, fmt, arglist);
1757 const char *fmt,
1756 buf_printf(struct buffer *buf, const char *fmt, ...) argument
[all...]
/scripts/kconfig/lxdialog/
H A Ddialog.h154 void item_make(const char *fmt, ...);
155 void item_add_str(const char *fmt, ...);
H A Dutil.c550 void item_make(const char *fmt, ...) argument
562 va_start(ap, fmt);
563 vsnprintf(item_cur->node.str, sizeof(item_cur->node.str), fmt, ap);
567 void item_add_str(const char *fmt, ...) argument
574 va_start(ap, fmt);
576 avail, fmt, ap);
/scripts/
H A Dpnmtologo.c78 static void die(const char *fmt, ...)
412 static void die(const char *fmt, ...) argument
416 va_start(ap, fmt);
417 vfprintf(stderr, fmt, ap);
/scripts/genksyms/
H A Dgenksyms.c714 void error_with_pos(const char *fmt, ...) argument
721 va_start(args, fmt);
722 vfprintf(stderr, fmt, args);

Completed in 1442 milliseconds