Home | History | Annotate | Download | only in src

Lines Matching refs:format

162 ESR_ReturnCode PFileVfprintf(PFile* self, int* result, const LCHAR* format, va_list args)
171 rc = self->vfprintf(self, result, format, args);
472 int pfprintf(PFile* stream, const LCHAR* format, ...)
481 va_start(args, format);
482 rc = PFileVfprintf(stream, &result, format, args);
490 int pvfprintf(PFile* stream, const LCHAR* format, va_list argptr)
498 rc = PFileVfprintf(stream, &result, format, argptr);
505 int pprintf(const LCHAR* format, ...)
514 va_start(args, format);
515 rc = PFileVfprintf(PSTDOUT, &result, format, args);