/bionic/libc/malloc_debug/ |
D | debug_log.h | 37 #define debug_log(format, ...) \ argument 38 __libc_format_log(ANDROID_LOG_DEBUG, "malloc_debug", (format), ##__VA_ARGS__ ) 39 #define error_log(format, ...) \ argument 40 __libc_format_log(ANDROID_LOG_ERROR, "malloc_debug", (format), ##__VA_ARGS__ ) 43 #define info_log(format, ...) \ argument 44 __libc_format_log(ANDROID_LOG_INFO, "malloc_debug", (format), ##__VA_ARGS__ )
|
D | Android.mk | 40 -Wno-error=format-zero-length \ 77 -Wno-error=format-zero-length \ 107 -Wno-error=format-zero-length \
|
/bionic/libc/bionic/ |
D | __vsprintf_chk.cpp | 48 size_t dest_len_from_compiler, const char* format, va_list va) { in __vsprintf_chk() argument 49 int result = vsnprintf(dest, dest_len_from_compiler, format, va); in __vsprintf_chk() 68 size_t dest_len_from_compiler, const char* format, ...) { in __sprintf_chk() argument 70 va_start(va, format); in __sprintf_chk() 71 int result = __vsprintf_chk(dest, flags, dest_len_from_compiler, format, va); in __sprintf_chk()
|
D | __vsnprintf_chk.cpp | 48 size_t dest_len_from_compiler, const char* format, va_list va) { in __vsnprintf_chk() argument 53 return vsnprintf(dest, supplied_size, format, va); in __vsnprintf_chk() 68 size_t dest_len_from_compiler, const char* format, ...) { in __snprintf_chk() argument 70 va_start(va, format); in __snprintf_chk() 71 int result = __vsnprintf_chk(dest, supplied_size, flags, dest_len_from_compiler, format, va); in __snprintf_chk()
|
D | libc_logging.cpp | 145 static unsigned parse_decimal(const char *format, int *ppos) { in parse_decimal() argument 146 const char* p = format + *ppos; in parse_decimal() 160 *ppos = p - format; in parse_decimal() 240 static void out_vformat(Out& o, const char* format, va_list args) { in out_vformat() argument 260 c = format[mm]; in out_vformat() 267 o.Send(format+nn, mm-nn); in out_vformat() 280 c = format[nn++]; in out_vformat() 304 width = static_cast<int>(parse_decimal(format, &nn)); in out_vformat() 305 c = format[nn++]; in out_vformat() 310 prec = static_cast<int>(parse_decimal(format, &nn)); in out_vformat() [all …]
|
D | time64.c | 171 # define TRACE(format) (fprintf(stderr, format)) argument 172 # define TRACE1(format, var1) (fprintf(stderr, format, var1)) argument 173 # define TRACE2(format, var1, var2) (fprintf(stderr, format, var1, var2)) argument 174 # define TRACE3(format, var1, var2, var3) (fprintf(stderr, format, var1, var2, var3)) argument 176 # define TRACE(format) ((void)0) argument 177 # define TRACE1(format, var1) ((void)0) argument 178 # define TRACE2(format, var1, var2) ((void)0) argument 179 # define TRACE3(format, var1, var2, var3) ((void)0) argument
|
D | malloc_common.cpp | 191 #define error_log(format, ...) \ argument 192 __libc_format_log(ANDROID_LOG_ERROR, "libc", (format), ##__VA_ARGS__ ) 193 #define info_log(format, ...) \ argument 194 __libc_format_log(ANDROID_LOG_INFO, "libc", (format), ##__VA_ARGS__ )
|
D | locale.cpp | 195 size_t strftime_l(char* s, size_t max, const char* format, const struct tm* tm, locale_t) { in strftime_l() argument 196 return strftime(s, max, format, tm); in strftime_l()
|
/bionic/libc/private/ |
D | libc_logging.h | 76 __LIBC_HIDDEN__ __noreturn void __libc_fatal(const char* format, ...) __printflike(1, 2); 84 __LIBC_HIDDEN__ void __libc_fatal_no_abort(const char* format, ...) 92 __LIBC_HIDDEN__ int __libc_format_buffer(char* buffer, size_t buffer_size, const char* format, ...) 95 __LIBC_HIDDEN__ int __libc_format_fd(int fd, const char* format, ...) 98 __LIBC_HIDDEN__ int __libc_format_log(int priority, const char* tag, const char* format, ...) 101 __LIBC_HIDDEN__ int __libc_format_log_va_list(int priority, const char* tag, const char* format,
|
/bionic/tools/bionicbb/ |
D | gerrit.py | 24 super(GerritError, self).__init__('Error {}: {}'.format(code, url)) 29 call('/changes/{}/revisions/{}/commit'.format(change_id, revision))) 34 call('/changes/{}/revisions/{}/files'.format( 50 endpoint = '/changes/{}/detail?o=CURRENT_REVISION'.format(change_id) 71 details = json.loads(call('/changes/{}/revisions/{}/review'.format(
|
D | bionicbb.py | 55 message_lines = ['{} #{} checkbuild {}: {}'.format( 72 url = gerrit_url('/a/changes/{}/revisions/{}/review'.format(change_id, 80 url = gerrit_url('/a/changes/{}/revisions/{}/review'.format(change_id, 113 url = gerrit_url('/a/changes/{}/revisions/{}/review'.format(change_id,
|
D | presubmit.py | 113 raise RuntimeError('bogus project: {}'.format(project)) 115 raise RuntimeError('Bad project mapping: {} => {}'.format( 150 url = '{}/{}'.format(config.build_listener_url, 'drop-rejection')
|
/bionic/libc/tzcode/ |
D | strftime.c | 127 strftime(char *s, size_t maxsize, const char *format, const struct tm *t) in strftime() argument 134 p = _fmt(((format == NULL) ? "%c" : format), t, s, s + maxsize, &warn); in strftime() 138 if (format == NULL) in strftime() 141 format); in strftime() 171 _fmt(const char *format, const struct tm *t, char *pt, in _fmt() argument 174 for ( ; *format; ++format) { in _fmt() 175 if (*format == '%') { in _fmt() 178 switch (*++format) { in _fmt() 180 --format; in _fmt() 252 modifier = *format; in _fmt() [all …]
|
/bionic/libc/upstream-openbsd/lib/libc/time/ |
D | wcsftime.c | 120 const wchar_t *__restrict format, const struct tm *__restrict t) in wcsftime() argument 127 p = _fmt(((format == NULL) ? L"%c" : format), t, s, s + maxsize, &warn); in wcsftime() 138 _fmt(const wchar_t *format, const struct tm *t, wchar_t *pt, in _fmt() argument 141 for ( ; *format; ++format) { in _fmt() 142 if (*format != L'%') { in _fmt() 145 *pt++ = *format; in _fmt() 149 switch (*++format) { in _fmt() 151 --format; in _fmt() 392 if (*format == 'V') in _fmt() 394 else if (*format == 'g') { in _fmt() [all …]
|
/bionic/libc/malloc_debug/tests/ |
D | log_fake.cpp | 48 extern "C" int __libc_format_log(int priority, const char* tag, const char* format, ...) { in __libc_format_log() argument 54 va_start(ap, format); in __libc_format_log() 55 android::base::StringAppendV(&g_fake_log_print, format, ap); in __libc_format_log()
|
/bionic/libc/include/ |
D | stdio.h | 305 int vsnprintf(char *dest, size_t size, const char *format, __va_list ap) in vsnprintf() argument 307 return __builtin___vsnprintf_chk(dest, size, 0, __bos(dest), format, ap); in vsnprintf() 312 int vsprintf(char *dest, const char *format, __va_list ap) in vsprintf() argument 314 return __builtin___vsprintf_chk(dest, 0, __bos(dest), format, ap); in vsprintf() 325 int snprintf(char *dest, size_t size, const char *format, ...) in snprintf() argument 328 __bos(dest), format, __builtin_va_arg_pack()); in snprintf() 340 int sprintf(char *dest, const char *format, ...) in sprintf() argument 343 __bos(dest), format, __builtin_va_arg_pack()); in sprintf()
|
/bionic/libc/kernel/uapi/video/ |
D | adf.h | 79 __u32 format; member 105 __u32 format; member
|
/bionic/libc/kernel/uapi/drm/ |
D | vmwgfx_drm.h | 94 uint32_t format; member 187 int32_t format; member 324 uint32_t format; member
|
D | qxl_drm.h | 100 uint32_t format; member
|
D | virtgpu_drm.h | 60 uint32_t format; member
|
/bionic/libc/kernel/uapi/linux/ |
D | omapfb.h | 112 __u32 format; member 122 __u32 format; member
|
D | virtio_gpu.h | 110 __le32 format; member 191 __le32 format; member
|
D | v4l2-subdev.h | 35 struct v4l2_mbus_framefmt format; member
|
/bionic/libc/tools/ |
D | symbols.py | 66 '{}_intermediates'.format(os.path.splitext(f)[0]))
|
/bionic/libc/kernel/uapi/sound/ |
D | hdspm.h | 94 enum hdspm_ltc_format format; member
|