Searched defs:format (Results 1 - 23 of 23) sorted by relevance

/bionic/libc/bionic/
H A Dstrftime_l.cpp31 size_t strftime_l(char *s, size_t max, const char *format, const struct tm *tm, argument
33 return strftime(s, max, format, tm);
H A D__vsnprintf_chk.cpp48 size_t dest_len_from_compiler, const char* format, va_list va) {
53 return vsnprintf(dest, supplied_size, format, va);
68 size_t dest_len_from_compiler, const char* format, ...) {
70 va_start(va, format);
71 int result = __vsnprintf_chk(dest, supplied_size, flags, dest_len_from_compiler, format, va);
47 __vsnprintf_chk(char* dest, size_t supplied_size, int , size_t dest_len_from_compiler, const char* format, va_list va) argument
67 __snprintf_chk(char* dest, size_t supplied_size, int flags, size_t dest_len_from_compiler, const char* format, ...) argument
H A D__vsprintf_chk.cpp48 size_t dest_len_from_compiler, const char* format, va_list va) {
49 int result = vsnprintf(dest, dest_len_from_compiler, format, va);
68 size_t dest_len_from_compiler, const char* format, ...) {
70 va_start(va, format);
71 int result = __vsprintf_chk(dest, flags, dest_len_from_compiler, format, va);
47 __vsprintf_chk(char* dest, int , size_t dest_len_from_compiler, const char* format, va_list va) argument
67 __sprintf_chk(char* dest, int flags, size_t dest_len_from_compiler, const char* format, ...) argument
H A Dlibc_logging.cpp132 /* Parse a decimal string from 'format + *ppos',
138 static unsigned parse_decimal(const char *format, int *ppos) { argument
139 const char* p = format + *ppos;
153 *ppos = p - format;
233 static void out_vformat(Out& o, const char* format, va_list args) { argument
245 char buffer[32]; /* temporary buffer used to format numbers */
253 c = format[mm];
260 o.Send(format+nn, mm-nn);
273 c = format[nn++];
297 width = static_cast<int>(parse_decimal(format,
409 __libc_format_buffer(char* buffer, size_t buffer_size, const char* format, ...) argument
418 __libc_format_fd(int fd, const char* format, ...) argument
543 __libc_format_log_va_list(int priority, const char* tag, const char* format, va_list args) argument
550 __libc_format_log(int priority, const char* tag, const char* format, ...) argument
618 __libc_fatal(const char* format, va_list args) argument
636 __libc_fatal_no_abort(const char* format, ...) argument
643 __libc_fatal(const char* format, ...) argument
[all...]
H A Dmalloc_debug_check.cpp67 static void log_message(const char* format, ...) { argument
69 va_start(args, format);
70 __libc_format_log_va_list(ANDROID_LOG_ERROR, "libc", format, args);
/bionic/libc/kernel/uapi/drm/
H A Dqxl_drm.h100 uint32_t format; member in struct:drm_qxl_alloc_surf
H A Dr128_drm.h234 int format; member in struct:drm_r128_blit
H A Dvmwgfx_drm.h85 uint32_t format; member in struct:drm_vmw_surface_create_req
176 int32_t format; member in struct:drm_vmw_control_stream_arg
314 uint32_t format; member in struct:drm_vmw_gb_surface_create_req
H A Dradeon_drm.h636 int format; member in struct:drm_radeon_texture
/bionic/libc/kernel/uapi/linux/
H A Dv4l2-subdev.h35 struct v4l2_mbus_framefmt format; member in struct:v4l2_subdev_format
H A Domapfb.h112 __u32 format; member in struct:omapfb_update_window
122 __u32 format; member in struct:omapfb_update_window_old
H A Dnvme.h445 struct nvme_format_cmd format; member in union:nvme_command::__anon583
H A Domap3isp.h330 enum omap3isp_cfa_fmt format; member in struct:omap3isp_prev_cfa
H A Dvideodev2.h1084 __u32 format; member in struct:v4l2_decoder_cmd::__anon785::__anon787
1312 struct v4l2_format format; member in struct:v4l2_create_buffers
/bionic/libc/upstream-openbsd/lib/libc/time/
H A Dwcsftime.c77 ** C99 requires this format.
85 ** C99 requires this format.
120 const wchar_t *__restrict format, const struct tm *__restrict t)
127 p = _fmt(((format == NULL) ? L"%c" : format), t, s, s + maxsize, &warn);
138 _fmt(const wchar_t *format, const struct tm *t, wchar_t *pt, argument
141 for ( ; *format; ++format) {
142 if (*format != L'%') {
145 *pt++ = *format;
119 wcsftime(wchar_t *__restrict s, size_t maxsize, const wchar_t *__restrict format, const struct tm *__restrict t) argument
497 _conv(int n, const wchar_t *format, wchar_t *pt, const wchar_t *ptlim) argument
[all...]
/bionic/libc/include/
H A Dstdio.h372 int vsnprintf(char *dest, size_t size, const char *format, __va_list ap) argument
374 return __builtin___vsnprintf_chk(dest, size, 0, __bos(dest), format, ap);
379 int vsprintf(char *dest, const char *format, __va_list ap) argument
381 return __builtin___vsprintf_chk(dest, 0, __bos(dest), format, ap);
392 int snprintf(char *dest, size_t size, const char *format, ...) argument
395 __bos(dest), format, __builtin_va_arg_pack());
407 int sprintf(char *dest, const char *format, ...) argument
410 __bos(dest), format, __builtin_va_arg_pack());
/bionic/libc/tzcode/
H A Dstrftime.c88 ** C99 requires this format.
96 ** C99 requires this format.
135 strftime(char * const s, const size_t maxsize, const char *const format, argument
146 p = _fmt(((format == NULL) ? "%c" : format), t, s, s + maxsize, &warn);
150 if (format == NULL)
151 (void) fprintf(stderr, "NULL strftime format ");
152 else (void) fprintf(stderr, "strftime format \"%s\" ",
153 format);
186 _fmt(const char *format, cons argument
644 _conv(const int n, const char *const format, char *const pt, const char *const ptlim) argument
[all...]
/bionic/libc/kernel/uapi/sound/
H A Dhdspm.h92 enum hdspm_ltc_format format; member in struct:hdspm_ltc
H A Dcompress_params.h239 __u32 format; member in struct:snd_codec
/bionic/libc/kernel/uapi/video/
H A Dadf.h79 __u32 format; member in struct:adf_buffer_config
105 __u32 format; member in struct:adf_simple_buffer_alloc
/bionic/libc/kernel/uapi/linux/dvb/
H A Dvideo.h90 __u32 format; member in struct:video_command::__anon280::__anon282
/bionic/libc/dns/resolv/
H A Dres_cache.c254 _bprint( char* p, char* end, const char* format, ... ) argument
264 va_start(args, format);
265 n = vsnprintf( p, avail, format, args);
357 /* reminder: the general format of a DNS packet is the following:
405 * terminated by a zero. Each label has the following format:
419 * by using a 2-byte pointer, with format:
/bionic/libc/kernel/uapi/linux/wimax/
H A Di2400m.h371 __u8 format; member in struct:i2400m_tlv_config_d2h_data_format

Completed in 516 milliseconds