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

12

/system/wlan/ti/wilink_6_1/platforms/os/linux/inc/
H A Dioctl_init.h52 # define print_deb(fmt, arg...) printk(KERN_INFO DRIVER_NAME ": " fmt,##arg)
54 # define print_deb(fmt, arg...)
58 # define print_info(fmt, arg...) printk(KERN_INFO DRIVER_NAME ": " fmt,##arg)
60 # define print_info(fmt, arg...)
64 # define print_err(fmt, arg...) printk(KERN_ERR DRIVER_NAME ": " fmt,##arg)
H A DWlanDrvIf.h63 #define ti_dprintf(log, fmt, args...) do { \
65 printk(KERN_INFO fmt, ## args); \
69 #define ti_dprintf(log, fmt, args...)
81 #define ti_nodprintf(log, fmt, args...)
/system/wlan/ti/sta_dk_4_0_4_32/pform/linux/inc/
H A Dioctl_init.h50 # define print_deb(fmt, arg...) printk(KERN_INFO DRIVER_NAME ": " fmt,##arg)
52 # define print_deb(fmt, arg...)
56 # define print_info(fmt, arg...) printk(KERN_INFO DRIVER_NAME ": " fmt,##arg)
58 # define print_info(fmt, arg...)
62 # define print_err(fmt, arg...) printk(KERN_ERR DRIVER_NAME ": " fmt,##arg)
H A Desta_drv.h154 #define ti_dprintf(log, fmt, args...) do { \
156 printk(KERN_INFO fmt, ## args); \
160 #define ti_dprintf(log, fmt, args...)
164 #define ti_nodprintf(log, fmt, args...)
/system/wlan/ti/sta_dk_4_0_4_32/pform/common/inc/
H A Dcli_cu_common.h71 # define print(fmt, arg...) fprintf(stdout, fmt, ##arg)
75 # define print_err(fmt, arg...) fprintf(stderr, fmt, ##arg)
80 # define print_deb(fmt, arg...) fprintf(stdout, fmt, ##arg)
82 # define print_deb(fmt, arg...)
/system/wlan/ti/wilink_6_1/platforms/os/common/inc/
H A Dcli_cu_common.h74 # define print(fmt, arg...) fprintf(stdout, fmt, ##arg)
78 # define print_err(fmt, arg...) fprintf(stderr, fmt, ##arg)
83 # define print_deb(fmt, arg...) fprintf(stdout, fmt, ##arg)
85 # define print_deb(fmt, arg...)
/system/core/include/android/
H A Dlog.h97 * Send a formatted string to the log, used like printf(fmt,...)
99 int __android_log_print(int prio, const char *tag, const char *fmt, ...)
110 const char *fmt, va_list ap);
117 const char *fmt, ...)
/system/core/sh/
H A Derror.c211 sh_err(int status, const char *fmt, ...) argument
215 va_start(ap, fmt);
216 exvwarning(errno, fmt, ap);
222 sh_verr(int status, const char *fmt, va_list ap) argument
224 exvwarning(errno, fmt, ap);
229 sh_errx(int status, const char *fmt, ...) argument
233 va_start(ap, fmt);
234 exvwarning(-1, fmt, ap);
240 sh_verrx(int status, const char *fmt, va_list ap) argument
242 exvwarning(-1, fmt, a
247 sh_warn(const char *fmt, ...) argument
257 sh_vwarn(const char *fmt, va_list ap) argument
263 sh_warnx(const char *fmt, ...) argument
273 sh_vwarnx(const char *fmt, va_list ap) argument
[all...]
H A Doutput.c211 outfmt(struct output *file, const char *fmt, ...) argument
215 va_start(ap, fmt);
216 doformat(file, fmt, ap);
222 out1fmt(const char *fmt, ...) argument
226 va_start(ap, fmt);
227 doformat(out1, fmt, ap);
232 dprintf(const char *fmt, ...) argument
236 va_start(ap, fmt);
237 doformat(out2, fmt, ap);
243 fmtstr(char *outbuf, size_t length, const char *fmt, argument
[all...]
H A Dshow.c283 trace(const char *fmt, ...) argument
290 va_start(va, fmt);
291 (void) vfprintf(tracefile, fmt, va);
297 tracev(const char *fmt, va_list va) argument
302 (void) vfprintf(tracefile, fmt, va);
/system/core/liblog/
H A Dlogd_write.c190 int __android_log_vprint(int prio, const char *tag, const char *fmt, va_list ap) argument
194 vsnprintf(buf, LOG_BUF_SIZE, fmt, ap);
199 int __android_log_print(int prio, const char *tag, const char *fmt, ...) argument
204 va_start(ap, fmt);
205 vsnprintf(buf, LOG_BUF_SIZE, fmt, ap);
211 int __android_log_buf_print(int bufID, int prio, const char *tag, const char *fmt, ...) argument
216 va_start(ap, fmt);
217 vsnprintf(buf, LOG_BUF_SIZE, fmt, ap);
224 const char *fmt, ...)
229 va_start(ap, fmt);
223 __android_log_assert(const char *cond, const char *tag, const char *fmt, ...) argument
[all...]
/system/core/debuggerd/
H A Dutility.h54 extern void _LOG(int tfd, bool in_tombstone_only, const char *fmt, ...);
H A Ddebuggerd.c64 void _LOG(int tfd, bool in_tombstone_only, const char *fmt, ...) argument
69 va_start(ap, fmt);
73 vsnprintf(buf, sizeof(buf), fmt, ap);
79 __android_log_vprint(ANDROID_LOG_INFO, "DEBUG", fmt, ap);
82 #define LOG(fmt...) _LOG(-1, 0, fmt)
84 #define XLOG(fmt...) _LOG(-1, 0, fmt)
86 #define XLOG(fmt...) do {} while(0)
/system/core/fastboot/
H A Dfastboot.h55 void die(const char *fmt, ...);
H A Dengine.c44 char *mkmsg(const char *fmt, ...) argument
50 va_start(ap, fmt);
51 vsprintf(buf, fmt, ap);
96 static Action *queue_action(unsigned op, const char *fmt, ...) argument
104 va_start(ap, fmt);
105 vsprintf(a->cmd, fmt, ap);
/system/core/include/cutils/
H A Dlog.h350 #define LOG_PRI_VA(priority, tag, fmt, args) \
351 android_vprintLog(priority, NULL, tag, fmt, args)
400 #define android_printLog(prio, tag, fmt...) \
401 __android_log_print(prio, tag, fmt)
403 #define android_vprintLog(prio, cond, tag, fmt...) \
404 __android_log_vprint(prio, tag, fmt)
406 #define android_printAssert(cond, tag, fmt...) \
407 __android_log_assert(cond, tag, fmt)
439 int __android_log_buf_print(int bufID, int prio, const char *tag, const char *fmt, ...);
/system/wlan/ti/sta_dk_4_0_4_32/CUDK/tiwlan_loader/
H A Dtiwlan_loader.c72 #define print_error(fmt, args...) \
73 { LOGE(fmt , ## args); }
75 #define print_error(fmt, args...) \
80 #define print_debug(fmt, args...) \
81 { LOGD(fmt , ## args); }
83 #define print_debug(fmt, args...) \
88 #define print_info(fmt, args...) \
89 { LOGI(fmt , ## args); }
91 #define print_info(fmt, args...) \
/system/core/init/
H A Dutil.c58 void log_write(int level, const char *fmt, ...) argument
66 va_start(ap, fmt);
67 vsnprintf(buf, LOG_BUF_MAX, fmt, ap);
/system/core/libacc/tests/
H A Dmain.cpp61 disassemble_printf(const char *fmt, ...) { argument
63 va_start(ap, fmt);
64 vfprintf(disasmOut, fmt, ap);
H A Ddisassem.cpp308 int fmt; local
310 fmt = 0;
340 ++fmt;
530 ++fmt;
531 if (fmt == 1)
693 disassemble_printf(const char *fmt, ...) { argument
695 va_start(ap, fmt);
696 vprintf(fmt, ap);
/system/extras/tests/framebuffer/
H A Dmdp_test.c31 static int open_file(char *name, int *fd, int *len, int *fmt) argument
43 *fmt = MDP_Y_CBCR_H2V2;
45 *fmt = MDP_RGB_565;
64 printf("Successfully opened file %s (fmt=%d len=%d fd=%d)\n", fn, *fmt,
/system/core/libpixelflinger/codeflinger/
H A Ddisassem.c307 int fmt; local
309 fmt = 0;
339 ++fmt;
529 ++fmt;
530 if (fmt == 1)
/system/wlan/ti/sta_dk_4_0_4_32/pform/linux/src/
H A Dosapi.c73 #define PRINT_REG(fmt, args...) print_info(fmt, args)
75 #define PRINT_REG(fmt, args...)
77 #define NOPRINT_REG(fmt, args...)
80 #define esta_timer_log(fmt,args...) printk(fmt, ## args)
82 #define esta_timer_log(fmt,args...)
/system/core/adb/
H A Dadb.h233 void fatal(const char *fmt, ...);
234 void fatal_errno(const char *fmt, ...);
H A Dfdevent.c35 static void fatal(const char *fn, const char *fmt, ...) argument
38 va_start(ap, fmt);
40 vfprintf(stderr, fmt, ap);

Completed in 480 milliseconds

12