• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/lib/

Lines Matching defs:format

23  *  A merge of Bjorn Reese's format() function and Daniel's dsprintf()
237 static long dprintf_Pass1(const char *format, va_stack_t *vto, char **endpos,
240 char *fmt = (char *)format;
556 void *data, /* untouched by format(), just sent to the stream() function in
560 const char *format, /* %-formatted string */
566 /* Pointer into the format string. */
584 dprintf_Pass1(format, vto, endpos, ap_save);
589 f = (char *)format;
613 /* This isn't a format spec, so write everything out until the next one
624 '%' as a conversion specifier, it says "The complete format
966 int curl_mvsnprintf(char *buffer, size_t maxlength, const char *format,
976 retcode = dprintf_formatf(&info, addbyter, format, ap_save);
988 int curl_msnprintf(char *buffer, size_t maxlength, const char *format, ...)
992 va_start(ap_save, format);
993 retcode = curl_mvsnprintf(buffer, maxlength, format, ap_save);
1033 char *curl_maprintf(const char *format, ...)
1044 va_start(ap_save, format);
1045 retcode = dprintf_formatf(&info, alloc_addbyter, format, ap_save);
1060 char *curl_mvaprintf(const char *format, va_list ap_save)
1070 retcode = dprintf_formatf(&info, alloc_addbyter, format, ap_save);
1094 int curl_msprintf(char *buffer, const char *format, ...)
1098 va_start(ap_save, format);
1099 retcode = dprintf_formatf(&buffer, storebuffer, format, ap_save);
1105 int curl_mprintf(const char *format, ...)
1109 va_start(ap_save, format);
1111 retcode = dprintf_formatf(stdout, fputc, format, ap_save);
1116 int curl_mfprintf(FILE *whereto, const char *format, ...)
1120 va_start(ap_save, format);
1121 retcode = dprintf_formatf(whereto, fputc, format, ap_save);
1126 int curl_mvsprintf(char *buffer, const char *format, va_list ap_save)
1129 retcode = dprintf_formatf(&buffer, storebuffer, format, ap_save);
1134 int curl_mvprintf(const char *format, va_list ap_save)
1136 return dprintf_formatf(stdout, fputc, format, ap_save);
1139 int curl_mvfprintf(FILE *whereto, const char *format, va_list ap_save)
1141 return dprintf_formatf(whereto, fputc, format, ap_save);