Home | History | Annotate | Download | only in qphelper

Lines Matching refs:format

46 void qpPrintf (const char* format, ...)
49 va_start(args, format);
50 printFmt(MESSAGETYPE_INFO, format, args);
54 void qpPrintv (const char* format, va_list args)
56 printFmt(MESSAGETYPE_INFO, format, args);
59 void qpDief (const char* format, ...)
62 va_start(args, format);
63 printFmt(MESSAGETYPE_ERROR, format, args);
69 void qpDiev (const char* format, va_list args)
71 printFmt(MESSAGETYPE_ERROR, format, args);
95 void printFmt (MessageType type, const char* format, va_list args)
97 __android_log_vprint(getLogPriority(type), "dEQP", format, args);
126 void printFmt (MessageType type, const char* format, va_list args)
133 vfprintf(out, format, args);