Home | History | Annotate | Download | only in bio

Lines Matching refs:format

137 		  const char *format, va_list args);
139 /* format read states */
149 /* format flags - Bits */
175 const char *format,
192 ch = *format++;
204 ch = *format++;
210 ch = *format++;
214 ch = *format++;
218 ch = *format++;
222 ch = *format++;
226 ch = *format++;
236 ch = *format++;
239 ch = *format++;
247 ch = *format++;
256 ch = *format++;
259 ch = *format++;
268 ch = *format++;
271 if (*format == 'l') {
273 format++;
276 ch = *format++;
280 ch = *format++;
284 ch = *format++;
407 ch = *format++;
413 ch = *format++;
768 int BIO_printf (BIO *bio, const char *format, ...)
773 va_start(args, format);
775 ret = BIO_vprintf(bio, format, args);
781 int BIO_vprintf (BIO *bio, const char *format, va_list args)
796 &retlen, &ignored, format, args);
814 int BIO_snprintf(char *buf, size_t n, const char *format, ...)
819 va_start(args, format);
821 ret = BIO_vsnprintf(buf, n, format, args);
827 int BIO_vsnprintf(char *buf, size_t n, const char *format, va_list args)
832 _dopr(&buf, NULL, &n, &retlen, &truncated, format, args);