HomeSort by relevance Sort by last modified time
    Searched refs:fmt (Results 1 - 25 of 860) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /hardware/ti/omap4xxx/domx/mm_osal/inc/
timm_osal_trace.h 112 const char *fmt, ...);
117 #define __TIMM_OSAL_Trace(level, tracegrp, fmt, ...) \
122 __TIMM_OSAL_TraceFunction(&loc, fmt"\n", ##__VA_ARGS__); \
128 #define TIMM_OSAL_Error(fmt,...) TIMM_OSAL_ErrorExt(TIMM_OSAL_TRACEGRP_SYSTEM, fmt, ##__VA_ARGS__)
133 #define TIMM_OSAL_Warning(fmt,...) TIMM_OSAL_WarningExt(TIMM_OSAL_TRACEGRP_SYSTEM, fmt, ##__VA_ARGS__)
138 #define TIMM_OSAL_Info(fmt,...) TIMM_OSAL_InfoExt(TIMM_OSAL_TRACEGRP_SYSTEM, fmt, ##__VA_ARGS__)
143 #define TIMM_OSAL_Debug(fmt,...) TIMM_OSAL_DebugExt(TIMM_OSAL_TRACEGRP_SYSTEM, fmt, ##__VA_ARGS__
    [all...]
  /bionic/libc/stdio/
vprintf.c 37 vprintf(const char *fmt, __va_list ap)
39 return (vfprintf(stdout, fmt, ap));
vscanf.c 37 vscanf(const char *fmt, __va_list ap)
40 return (vfscanf(stdin, fmt, ap));
printf.c 38 printf(const char *fmt, ...)
43 va_start(ap, fmt);
44 ret = vfprintf(stdout, fmt, ap);
scanf.c 38 scanf(const char *fmt, ...)
43 va_start(ap, fmt);
44 ret = vfscanf(stdin, fmt, ap);
fprintf.c 38 fprintf(FILE *fp, const char *fmt, ...)
43 va_start(ap, fmt);
44 ret = vfprintf(fp, fmt, ap);
fscanf.c 38 fscanf(FILE *fp, const char *fmt, ...)
43 va_start(ap, fmt);
44 ret = vfscanf(fp, fmt, ap);
  /system/core/debuggerd/
utility.h 32 void _LOG(log_t* log, bool in_tombstone_only, const char *fmt, ...)
35 #define LOG(fmt...) _LOG(NULL, 0, fmt)
39 #define XLOG(fmt...) _LOG(NULL, 0, fmt)
41 #define XLOG(fmt...) do {} while(0)
46 #define XLOG2(fmt...) _LOG(NULL, 0, fmt)
48 #define XLOG2(fmt...) do {} while(0)
  /bootable/bootloader/legacy/libc/
cprintf.c 34 void cprintf(const char *fmt, ...)
38 va_start(ap, fmt);
39 __xprintf(fmt, ap, (void*) console_putc, 0);
libc_private.h 32 void __xprintf(const char *fmt, va_list ap,
dprintf.c 50 void dprintf(const char *fmt, ...)
53 va_start(ap, fmt);
54 __xprintf(fmt, ap, (void*) dputc, 0);
  /external/openssh/
fatal.c 37 fatal(const char *fmt,...)
41 va_start(args, fmt);
42 do_log(SYSLOG_LEVEL_FATAL, fmt, args);
  /bionic/libc/bionic/
err.c 40 err(int eval, const char *fmt, ...)
44 va_start(ap, fmt);
45 verr(eval, fmt, ap);
50 errx(int eval, const char *fmt, ...)
54 va_start(ap, fmt);
55 verrx(eval, fmt, ap);
60 verr(int eval, const char *fmt, va_list ap)
66 if (fmt != NULL) {
67 (void)vfprintf(stderr, fmt, ap);
76 verrx(int eval, const char *fmt, va_list ap
    [all...]
  /external/libpcap/
bpf_image.c 46 const char *fmt, *op; local
55 fmt = "0x%x";
61 fmt = "#%d";
66 fmt = "";
71 fmt = "[%d]";
76 fmt = "[%d]";
81 fmt = "[%d]";
86 fmt = "#pktlen";
91 fmt = "[x + %d]";
96 fmt = "[x + %d]"
    [all...]
  /external/linux-tools-perf/util/ui/
helpline.h 7 void ui_helpline__vpush(const char *fmt, va_list ap);
8 void ui_helpline__fpush(const char *fmt, ...);
  /hardware/ti/wlan/wl1271/platforms/os/linux/inc/
ioctl_init.h 52 # 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)
  /external/qemu/android/
core-init-utils.h 32 void android_core_init_failure(const char* fmt, ...);
  /external/qemu/android/utils/
panic.c 17 _android_panic_defaultHandler( const char* fmt, va_list args )
20 vfprintf(stderr, fmt, args);
26 void android_panic( const char* fmt, ... )
29 va_start(args, fmt);
30 android_vpanic(fmt, args);
35 void android_vpanic( const char* fmt, va_list args )
37 _panicHandler(fmt, args);
  /external/grub/netboot/
misc.c 74 etherboot_vsprintf (char *buf, const char *fmt, const int *dp)
79 for ( ; *fmt != '\0'; ++fmt)
81 if (*fmt != '%')
83 buf ? *s++ = *fmt : grub_putchar (*fmt);
87 if (*++fmt == 's')
99 if (*fmt == '#')
102 fmt++;
105 if (*fmt == 'h'
    [all...]
  /frameworks/wilhelm/src/desktop/
SDL.c 47 SDL_AudioSpec fmt; local
48 fmt.freq = 44100;
49 fmt.format = AUDIO_S16;
50 fmt.channels = STEREO_CHANNELS;
52 fmt.samples = SndFile_BUFSIZE;
54 fmt.samples = SndFile_BUFSIZE / sizeof(short);
56 fmt.callback = SDL_callback;
57 fmt.userdata = (void *) thisEngine;
59 if (SDL_OpenAudio(&fmt, NULL) < 0) {
  /hardware/invensense/mlsdk/platform/include/
log.h 130 #define MPL_LOGV(fmt, ...) \
133 MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__);\
136 #define MPL_LOGV(fmt, ...) MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__)
146 #define MPL_LOGV_IF(cond, fmt, ...) \
147 do { if (0) MPL_LOG(fmt, ##__VA_ARGS__); } while (0)
149 #define MPL_LOGV_IF(cond, fmt, ...) \
151 ? MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__) \
160 #define MPL_LOGD(fmt, ...) MPL_LOG(LOG_DEBUG, MPL_LOG_TAG, fmt, ##__VA_ARGS__
    [all...]
  /external/chromium/third_party/libevent/
log.h 36 void event_err(int eval, const char *fmt, ...) EV_CHECK_FMT(2,3);
37 void event_warn(const char *fmt, ...) EV_CHECK_FMT(1,2);
38 void event_errx(int eval, const char *fmt, ...) EV_CHECK_FMT(2,3);
39 void event_warnx(const char *fmt, ...) EV_CHECK_FMT(1,2);
40 void event_msgx(const char *fmt, ...) EV_CHECK_FMT(1,2);
41 void _event_debugx(const char *fmt, ...) EV_CHECK_FMT(1,2);
log.c 65 static void _warn_helper(int severity, int log_errno, const char *fmt,
70 event_err(int eval, const char *fmt, ...)
74 va_start(ap, fmt);
75 _warn_helper(_EVENT_LOG_ERR, errno, fmt, ap);
81 event_warn(const char *fmt, ...)
85 va_start(ap, fmt);
86 _warn_helper(_EVENT_LOG_WARN, errno, fmt, ap);
91 event_errx(int eval, const char *fmt, ...)
95 va_start(ap, fmt);
96 _warn_helper(_EVENT_LOG_ERR, -1, fmt, ap)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_blit.h 89 #define RGB_FROM_PIXEL(Pixel, fmt, r, g, b) \
91 r = (((Pixel&fmt->Rmask)>>fmt->Rshift)<<fmt->Rloss); \
92 g = (((Pixel&fmt->Gmask)>>fmt->Gshift)<<fmt->Gloss); \
93 b = (((Pixel&fmt->Bmask)>>fmt->Bshift)<<fmt->Bloss);
    [all...]
  /external/clang/test/Misc/
emit-html.c 7 #define F(fmt, ...) fmt, ## __VA_ARGS__

Completed in 440 milliseconds

1 2 3 4 5 6 7 8 91011>>