Lines Matching refs:fmt

78 _dl_debug_vdprintf (int fd, int tag_p, const char *fmt, va_list arg)  in _dl_debug_vdprintf()  argument
86 while (*fmt != '\0') in _dl_debug_vdprintf()
88 const char *startp = fmt; in _dl_debug_vdprintf()
116 while (*fmt != '\0' && *fmt != '%' && (! tag_p || *fmt != '\n')) in _dl_debug_vdprintf()
117 ++fmt; in _dl_debug_vdprintf()
121 if ((iov[niov].iov_len = fmt - startp) != 0) in _dl_debug_vdprintf()
124 if (*fmt == '%') in _dl_debug_vdprintf()
135 if (*++fmt == '0') in _dl_debug_vdprintf()
138 ++fmt; in _dl_debug_vdprintf()
143 if (*fmt == '*') in _dl_debug_vdprintf()
146 ++fmt; in _dl_debug_vdprintf()
150 if (*fmt == '.' && fmt[1] == '*') in _dl_debug_vdprintf()
153 fmt += 2; in _dl_debug_vdprintf()
159 if (*fmt == 'l' || *fmt == 'Z') in _dl_debug_vdprintf()
164 ++fmt; in _dl_debug_vdprintf()
167 switch (*fmt) in _dl_debug_vdprintf()
184 if (*fmt == 'd') in _dl_debug_vdprintf()
211 char *cp = _itoa (num, endp, *fmt == 'x' ? 16 : 10, 0); in _dl_debug_vdprintf()
237 iov[niov].iov_base = (void *) fmt; in _dl_debug_vdprintf()
245 ++fmt; in _dl_debug_vdprintf()
247 else if (*fmt == '\n') in _dl_debug_vdprintf()
250 if (fmt == startp) in _dl_debug_vdprintf()
261 ++fmt; in _dl_debug_vdprintf()
272 _dl_debug_printf (const char *fmt, ...) in _dl_debug_printf() argument
276 va_start (arg, fmt); in _dl_debug_printf()
277 _dl_debug_vdprintf (GLRO(dl_debug_fd), 1, fmt, arg); in _dl_debug_printf()
284 _dl_debug_printf_c (const char *fmt, ...) in _dl_debug_printf_c() argument
288 va_start (arg, fmt); in _dl_debug_printf_c()
289 _dl_debug_vdprintf (GLRO(dl_debug_fd), -1, fmt, arg); in _dl_debug_printf_c()
296 _dl_dprintf (int fd, const char *fmt, ...) in _dl_dprintf() argument
300 va_start (arg, fmt); in _dl_dprintf()
301 _dl_debug_vdprintf (fd, 0, fmt, arg); in _dl_dprintf()
306 _dl_printf (const char *fmt, ...) in _dl_printf() argument
310 va_start (arg, fmt); in _dl_printf()
311 _dl_debug_vdprintf (STDOUT_FILENO, 0, fmt, arg); in _dl_printf()
316 _dl_error_printf (const char *fmt, ...) in _dl_error_printf() argument
320 va_start (arg, fmt); in _dl_error_printf()
321 _dl_debug_vdprintf (STDERR_FILENO, 0, fmt, arg); in _dl_error_printf()
326 _dl_fatal_printf (const char *fmt, ...) in _dl_fatal_printf() argument
330 va_start (arg, fmt); in _dl_fatal_printf()
331 _dl_debug_vdprintf (STDERR_FILENO, 0, fmt, arg); in _dl_fatal_printf()