• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libxml2-2.7.2/

Lines Matching defs:format

108 static xmlChar *xmlTextWriterVSprintf(const char *format, va_list argptr);
855 * @format: format string (see printf)
856 * @...: extra parameters for the format
864 const char *format, ...)
869 va_start(ap, format);
871 rc = xmlTextWriterWriteVFormatComment(writer, format, ap);
880 * @format: format string (see printf)
889 const char *format, va_list argptr)
900 buf = xmlTextWriterVSprintf(format, argptr);
1275 * @format: format string (see printf)
1276 * @...: extra parameters for the format
1283 xmlTextWriterWriteFormatRaw(xmlTextWriterPtr writer, const char *format,
1289 va_start(ap, format);
1291 rc = xmlTextWriterWriteVFormatRaw(writer, format, ap);
1300 * @format: format string (see printf)
1308 xmlTextWriterWriteVFormatRaw(xmlTextWriterPtr writer, const char *format,
1317 buf = xmlTextWriterVSprintf(format, argptr);
1401 * @format: format string (see printf)
1402 * @...: extra parameters for the format
1409 xmlTextWriterWriteFormatString(xmlTextWriterPtr writer, const char *format,
1415 if ((writer == NULL) || (format == NULL))
1418 va_start(ap, format);
1420 rc = xmlTextWriterWriteVFormatString(writer, format, ap);
1429 * @format: format string (see printf)
1438 const char *format, va_list argptr)
1443 if ((writer == NULL) || (format == NULL))
1446 buf = xmlTextWriterVSprintf(format, argptr);
1946 * @format: format string (see printf)
1947 * @...: extra parameters for the format
1955 const xmlChar * name, const char *format,
1961 va_start(ap, format);
1963 rc = xmlTextWriterWriteVFormatAttribute(writer, name, format, ap);
1973 * @format: format string (see printf)
1983 const char *format, va_list argptr)
1991 buf = xmlTextWriterVSprintf(format, argptr);
2041 * @format: format string (see printf)
2042 * @...: extra parameters for the format
2053 const char *format, ...)
2058 va_start(ap, format);
2061 namespaceURI, format, ap);
2073 * @format: format string (see printf)
2085 const char *format, va_list argptr)
2093 buf = xmlTextWriterVSprintf(format, argptr);
2149 * @format: format string (see printf)
2150 * @...: extra parameters for the format
2158 const xmlChar * name, const char *format,
2164 va_start(ap, format);
2166 rc = xmlTextWriterWriteVFormatElement(writer, name, format, ap);
2176 * @format: format string (see printf)
2185 const xmlChar * name, const char *format,
2194 buf = xmlTextWriterVSprintf(format, argptr);
2244 * @format: format string (see printf)
2245 * @...: extra parameters for the format
2256 const char *format, ...)
2261 va_start(ap, format);
2264 namespaceURI, format, ap);
2276 * @format: format string (see printf)
2288 const char *format, va_list argptr)
2296 buf = xmlTextWriterVSprintf(format, argptr);
2501 * @format: format string (see printf)
2502 * @...: extra parameters for the format
2510 const char *format, ...)
2515 va_start(ap, format);
2517 rc = xmlTextWriterWriteVFormatPI(writer, target, format, ap);
2527 * @format: format string (see printf)
2536 const xmlChar * target, const char *format,
2545 buf = xmlTextWriterVSprintf(format, argptr);
2716 * @format: format string (see printf)
2717 * @...: extra parameters for the format
2724 xmlTextWriterWriteFormatCDATA(xmlTextWriterPtr writer, const char *format,
2730 va_start(ap, format);
2732 rc = xmlTextWriterWriteVFormatCDATA(writer, format, ap);
2741 * @format: format string (see printf)
2749 xmlTextWriterWriteVFormatCDATA(xmlTextWriterPtr writer, const char *format,
2758 buf = xmlTextWriterVSprintf(format, argptr);
3025 * @format: format string (see printf)
3026 * @...: extra parameters for the format
3036 const xmlChar * sysid, const char *format, ...)
3041 va_start(ap, format);
3043 rc = xmlTextWriterWriteVFormatDTD(writer, name, pubid, sysid, format,
3056 * @format: format string (see printf)
3068 const char *format, va_list argptr)
3076 buf = xmlTextWriterVSprintf(format, argptr);
3269 * @format: format string (see printf)
3270 * @...: extra parameters for the format
3279 const char *format, ...)
3284 va_start(ap, format);
3286 rc = xmlTextWriterWriteVFormatDTDElement(writer, name, format, ap);
3296 * @format: format string (see printf)
3306 const char *format, va_list argptr)
3314 buf = xmlTextWriterVSprintf(format, argptr);
3506 * @format: format string (see printf)
3507 * @...: extra parameters for the format
3516 const char *format, ...)
3521 va_start(ap, format);
3523 rc = xmlTextWriterWriteVFormatDTDAttlist(writer, name, format, ap);
3533 * @format: format string (see printf)
3543 const char *format, va_list argptr)
3551 buf = xmlTextWriterVSprintf(format, argptr);
3763 * @format: format string (see printf)
3764 * @...: extra parameters for the format
3774 const char *format, ...)
3779 va_start(ap, format);
3782 format, ap);
3793 * @format: format string (see printf)
3804 const char *format,
3813 buf = xmlTextWriterVSprintf(format, argptr);
4444 * @format: see printf
4452 xmlTextWriterVSprintf(const char *format, va_list argptr)
4468 while (((count = vsnprintf((char *) buf, size, format, locarg)) < 0)