Lines Matching refs:format

1144  *			printf-style format for debugging message to be output
1146 * arguments as appropriate to 'format' specified
1309 * format - [RO, RO*] (char *)
1310 * printf-style format to create parameter value from
1312 * arguments as appropriate to 'format' specified
1315 * according to the results of the format string
1321 smlSetParamF(SML_TAG *tag, char *name, char *format, ...)
1333 assert(format != NULL);
1334 assert(*format != '\0');
1338 va_start(ap, format);
1339 vres = vsnprintf(fbfr, 1, format, ap);
1351 va_start(ap, format);
1352 vres = vsnprintf(bfr, vres+1, format, ap);
1369 * Description: Get a format-generated parameter from a tag
1372 * format - [RO, RO*] (char *)
1373 * printf-style format for parameter name to be
1376 * arguments as appropriate to 'format' specified
1387 smlGetParamF(SML_TAG *tag, char *format, ...)
1398 assert(format != NULL);
1399 assert(*format != '\0');
1403 va_start(ap, format);
1404 vres = vsnprintf(fbfr, 1, format, ap);
1416 va_start(ap, format);
1417 vres = vsnprintf(bfr, vres+1, format, ap);
1525 * format - [RO, RO*] (char *)
1526 * printf-style format for value to be compared against
1529 * arguments as appropriate to 'format' specified to
1538 smlParamEqF(SML_TAG *tag, char *findTag, char *findParam, char *format, ...)
1549 assert(format != NULL);
1550 assert(*format != '\0');
1554 va_start(ap, format);
1555 vres = vsnprintf(fbfr, 1, format, ap);
1567 va_start(ap, format);
1568 vres = vsnprintf(bfr, vres+1, format, ap);
1906 * Synopsis: Create string from printf style format and arguments
1907 * Description: Call to convert a printf style format and arguments into a
1909 * Arguments: format - [RO, RO*] (char *)
1910 * printf-style format for string to be formatted
1912 * arguments as appropriate to 'format' specified
1964 * Synopsis: Create string from printf style format and arguments
1965 * Description: Call to convert a printf style format and arguments into a
1975 * printf-style format for string to be formatted
1977 * arguments as appropriate to 'format' specified
2010 * encoded using the XML character reference encoding format.
2192 * Description: Given a string encoded using the XML character reference format,
3259 * fmt - the printf format, plus its arguments