Lines Matching refs:format
48 void qpPrintf (const char* format, ...)
51 va_start(args, format);
52 printFmt(MESSAGETYPE_INFO, format, args);
56 void qpPrintv (const char* format, va_list args)
58 printFmt(MESSAGETYPE_INFO, format, args);
61 void qpDief (const char* format, ...)
64 va_start(args, format);
65 printFmt(MESSAGETYPE_ERROR, format, args);
71 void qpDiev (const char* format, va_list args)
73 printFmt(MESSAGETYPE_ERROR, format, args);
97 void printFmt (MessageType type, const char* format, va_list args)
99 __android_log_vprint(getLogPriority(type), "dEQP", format, args);
128 void printFmt (MessageType type, const char* format, va_list args)
135 vfprintf(out, format, args);