Lines Matching defs:format
42 const char *format, va_list args);
44 /* format read states */
54 /* format flags - Bits */
90 size_t *retlen, int *truncated, const char *format, va_list args)
108 ch = *format++;
121 ch = *format++;
127 ch = *format++;
131 ch = *format++;
135 ch = *format++;
139 ch = *format++;
143 ch = *format++;
153 ch = *format++;
156 ch = *format++;
164 ch = *format++;
173 ch = *format++;
176 ch = *format++;
185 ch = *format++;
188 if (*format == 'l') {
190 format++;
193 ch = *format++;
198 ch = *format++;
202 ch = *format++;
206 ch = *format++;
347 format++;
353 ch = *format++;
884 int BIO_printf(BIO *bio, const char *format, ...)
889 va_start(args, format);
891 ret = BIO_vprintf(bio, format, args);
897 int BIO_vprintf(BIO *bio, const char *format, va_list args)
910 if (!_dopr(&hugebufp, &dynbuf, &hugebufsize, &retlen, &ignored, format,
930 int BIO_snprintf(char *buf, size_t n, const char *format, ...)
935 va_start(args, format);
937 ret = BIO_vsnprintf(buf, n, format, args);
943 int BIO_vsnprintf(char *buf, size_t n, const char *format, va_list args)
948 if (!_dopr(&buf, NULL, &n, &retlen, &truncated, format, args))