Lines Matching defs:format
58 void qpPrintf (const char* format, ...)
61 va_start(args, format);
62 printFmt(MESSAGETYPE_INFO, format, args);
66 void qpPrintErrorf (const char* format, ...)
69 va_start(args, format);
70 printFmt(MESSAGETYPE_NONFATAL_ERROR, format, args);
74 void qpPrintv (const char* format, va_list args)
76 printFmt(MESSAGETYPE_INFO, format, args);
79 void qpPrintErrorv (const char* format, va_list args)
81 printFmt(MESSAGETYPE_NONFATAL_ERROR, format, args);
84 void qpDief (const char* format, ...)
87 va_start(args, format);
88 printFmt(MESSAGETYPE_ERROR, format, args);
94 void qpDiev (const char* format, va_list args)
96 printFmt(MESSAGETYPE_ERROR, format, args);
123 void printFmt (MessageType type, const char* format, va_list args)
125 if (writeFtmRedirect && !writeFtmRedirect(type, format, args))
128 __android_log_vprint(getLogPriority(type), "dEQP", format, args);
160 void printFmt (MessageType type, const char* format, va_list args)
162 if (writeFtmRedirect && !writeFtmRedirect(type, format, args))
170 vfprintf(out, format, args);