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

/bionic/libc/bionic/
H A Dfdprintf.c34 int vfdprintf(int fd, const char * __restrict format, __va_list ap) argument
38 ret = vasprintf(&buf, format, ap);
48 int fdprintf(int fd, const char * __restrict format, ...) argument
53 va_start(ap, format);
54 ret = vfdprintf(fd, format, ap);
H A Dmalloc_debug_common.h104 #define debug_log(format, ...) \
105 __libc_android_log_print(ANDROID_LOG_DEBUG, "malloc_leak_check", (format), ##__VA_ARGS__ )
106 #define error_log(format, ...) \
107 __libc_android_log_print(ANDROID_LOG_ERROR, "malloc_leak_check", (format), ##__VA_ARGS__ )
108 #define info_log(format, ...) \
109 __libc_android_log_print(ANDROID_LOG_INFO, "malloc_leak_check", (format), ##__VA_ARGS__ )
H A Dmalloc_debug_qemu.c290 #define qemu_debug_log(format, ...) \
293 (format), ##__VA_ARGS__ ); \
295 qemu_log(ANDROID_LOG_DEBUG, (format), ##__VA_ARGS__ ); \
299 #define qemu_error_log(format, ...) \
302 (format), ##__VA_ARGS__ ); \
304 qemu_log(ANDROID_LOG_ERROR, (format), ##__VA_ARGS__ ); \
308 #define qemu_info_log(format, ...) \
311 (format), ##__VA_ARGS__ ); \
313 qemu_log(ANDROID_LOG_INFO, (format), ##__VA_ARGS__ ); \
512 * fmt + rest - Message format an
[all...]
H A Dtime64.c178 # define TRACE(format) (fprintf(stderr, format))
179 # define TRACE1(format, var1) (fprintf(stderr, format, var1))
180 # define TRACE2(format, var1, var2) (fprintf(stderr, format, var1, var2))
181 # define TRACE3(format, var1, var2, var3) (fprintf(stderr, format, var1, var2, var3))
183 # define TRACE(format) ((void)0)
184 # define TRACE1(format, var
[all...]
H A Dpthread_debug.c99 #define LOGD(format, ...) \
101 "pthread_debug", (format), ##__VA_ARGS__ )
103 #define LOGW(format, ...) \
105 "pthread_debug", (format), ##__VA_ARGS__ )
107 #define LOGE(format, ...) \
109 "pthread_debug", (format), ##__VA_ARGS__ )
111 #define LOGI(format, ...) \
113 "pthread_debug", (format), ##__VA_ARGS__ )
H A Dmalloc_debug_check.c72 static void log_message(const char* format, ...) argument
84 va_start(args, format);
86 format, args);
/bionic/linker/
H A Dlinker_format.h39 int format_buffer(char *buffer, size_t bufsize, const char *format, ...);
H A Dlinker_format.c76 out_vformat(Out *o, const char *format, va_list args);
136 vformat_buffer(char *buff, size_t buffsize, const char *format, va_list args) argument
145 out_vformat(out, format, args);
151 format_buffer(char *buff, size_t buffsize, const char *format, ...) argument
156 va_start(args, format);
157 ret = vformat_buffer(buff, buffsize, format, args);
170 vsnprintf(char *buff, size_t bufsize, const char *format, va_list args) argument
172 return format_buffer(buff, bufsize, format, args);
228 format_fd(int fd, const char *format, ...) argument
238 va_start(args, format);
305 format_log(int prio, const char *tag, const char *format, ...) argument
329 parse_decimal(const char *format, int *ppos) argument
428 out_vformat(Out *o, const char *format, va_list args) argument
653 utest_expect(const char* result, const char* format, ...) argument
[all...]
/bionic/libc/private/
H A Dbionic_time.h52 extern size_t strftime_tz(char *s, size_t max, const char *format, const struct tm *tm, const struct strftime_locale* lc);
/bionic/libc/stdlib/
H A Dwchar.c40 int fwprintf(FILE *stream, const wchar_t *format, ...) argument
45 va_start(args, format);
46 result = vfwprintf(stream, format, args);
51 int wprintf(const wchar_t *format, ...) argument
56 va_start(args, format);
57 result = vwprintf(format, args);
62 int swprintf(wchar_t *s, size_t n, const wchar_t *format, ...) argument
67 va_start(args, format);
68 result = vswprintf(s, n, format, args);
73 int vwprintf(const wchar_t *format, va_lis argument
78 vfwprintf(FILE *stream, const wchar_t *format, va_list arg) argument
84 vswprintf(wchar_t *s, size_t n, const wchar_t *format, va_list arg) argument
90 fwscanf(FILE *stream, const wchar_t *format, ... ) argument
96 wscanf(const wchar_t *format, ... ) argument
107 swscanf(const wchar_t *s, const wchar_t *format, ... ) argument
260 wcsftime(wchar_t *wcs, size_t maxsize, const wchar_t *format, const struct tm *timptr) argument
[all...]
/bionic/libc/kernel/common/linux/
H A Ddevice.h209 #define dev_printk(level, dev, format, arg...) printk(level "%s %s: " format , dev_driver_string(dev) , (dev)->bus_id , ## arg)
211 #define dev_dbg(dev, format, arg...) dev_printk(KERN_DEBUG , dev , format , ## arg)
214 #define dev_dbg(dev, format, arg...) do { (void)(dev); } while (0)
216 #define dev_err(dev, format, arg...) dev_printk(KERN_ERR , dev , format , ## arg)
217 #define dev_info(dev, format, arg...) dev_printk(KERN_INFO , dev , format , ## arg)
219 #define dev_warn(dev, format, ar
[all...]
H A Dmsm_mdp.h75 uint32_t format; member in struct:mdp_img
H A Dmsm_kgsl.h174 unsigned int format; member in struct:kgsl_buffer_desc
H A Dvideodev.h209 unsigned int format; member in struct:video_mmap
H A Dvideodev2.h1851 struct v4l2_format format; member in struct:v4l2_create_buffers
/bionic/libc/tzcode/
H A Dstrftime.c88 ** C99 requires this format.
96 ** C99 requires this format.
135 strftime(s, maxsize, format, t)
138 const char * const format;
141 return strftime_tz(s, maxsize, format, t, Locale);
145 strftime_tz(s, maxsize, format, t, locale)
148 const char * const format;
157 p = _fmt(((format == NULL) ? "%c" : format), t, s, s + maxsize, &warn, locale);
161 if (format
[all...]
H A Dprivate.h248 const char * scheck P((const char * string, const char * format));
/bionic/libc/unistd/
H A Dabort.c39 #define debug_log(format, ...) \
40 __libc_android_log_print(ANDROID_LOG_DEBUG, "libc-abort", (format), ##__VA_ARGS__ )
/bionic/libc/include/
H A Dtime.h80 extern size_t strftime(char *s, size_t max, const char *format, const struct tm *tm);
/bionic/libc/kernel/common/linux/spi/
H A Dcpcap.h600 enum cpcap_adc_format format; member in struct:cpcap_adc_us_request
/bionic/libc/netbsd/resolv/
H A Dres_cache.c271 _bprint( char* p, char* end, const char* format, ... ) argument
281 va_start(args, format);
282 n = vsnprintf( p, avail, format, args);
374 /* reminder: the general format of a DNS packet is the following:
422 * terminated by a zero. Each label has the following format:
436 * by using a 2-byte pointer, with format:

Completed in 337 milliseconds