Home | History | Annotate | Download | only in qphelper

Lines Matching refs:qpTestLog

24 #include "qpTestLog.h"
122 /* qpTestLog instance */
251 static void qpTestLog_flushFile (qpTestLog* log)
292 static deBool beginSession (qpTestLog* log)
310 static deBool endSession (qpTestLog* log)
329 * \return qpTestLog instance, or DE_NULL if cannot create file
331 qpTestLog* qpTestLog_createFileLog (const char* fileName, deUint32 flags)
333 qpTestLog* log = (qpTestLog*)deCalloc(sizeof(qpTestLog));
381 * \param a qpTestLog instance
383 void qpTestLog_destroy (qpTestLog* log)
404 * \param log qpTestLog instance
409 deBool qpTestLog_startCase (qpTestLog* log, const char* testCasePath, qpTestCaseType testCaseType)
448 * \param log qpTestLog instance
453 deBool qpTestLog_endCase (qpTestLog* log, qpTestResult result, const char* resultDetails)
491 * \param log qpTestLog instance
495 deBool qpTestLog_terminateCase (qpTestLog* log, qpTestResult result)
525 static deBool qpTestLog_writeKeyValuePair (qpTestLog* log, const char* elementName, const char* name, const char* description, const char* unit, qpKeyValueTag tag, const char* text)
555 * \param log qpTestLog instance
560 deBool qpTestLog_writeMessage (qpTestLog* log, const char* format, ...)
580 * \param log qpTestLog instance
587 deBool qpTestLog_writeText (qpTestLog* log, const char* name, const char* description, qpKeyValueTag tag, const char* text)
595 * \param log qpTestLog instance
602 deBool qpTestLog_writeInteger (qpTestLog* log, const char* name, const char* description, const char* unit, qpKeyValueTag tag, deInt64 value)
615 * \param log qpTestLog instance
622 deBool qpTestLog_writeFloat (qpTestLog* log, const char* name, const char* description, const char* unit, qpKeyValueTag tag, float value)
768 * \param log qpTestLog instance
773 deBool qpTestLog_startImageSet (qpTestLog* log, const char* name, const char* description)
801 * \param log qpTestLog instance
804 deBool qpTestLog_endImageSet (qpTestLog* log)
825 * \param log qpTestLog instance
837 qpTestLog* log,
974 deBool qpTestLog_startShaderProgram (qpTestLog* log, deBool linkOk, const char* linkInfoLog)
1000 * \param log qpTestLog instance
1003 deBool qpTestLog_endShaderProgram (qpTestLog* log)
1029 deBool qpTestLog_writeShader (qpTestLog* log, qpShaderType type, const char* source, deBool compileOk, const char* infoLog)
1060 deBool qpTestLog_startEglConfigSet (qpTestLog* log, const char* name, const char* description)
1089 deBool qpTestLog_endEglConfigSet (qpTestLog* log)
1112 deBool qpTestLog_writeEglConfig (qpTestLog* log, const qpEglConfigInfo* config)
1166 * \param log qpTestLog instance
1171 deBool qpTestLog_startSection (qpTestLog* log, const char* name, const char* description)
1199 * \param log qpTestLog instance
1202 deBool qpTestLog_endSection (qpTestLog* log)
1224 deBool qpTestLog_writeKernelSource (qpTestLog* log, const char* source)
1245 deBool qpTestLog_writeSpirVAssemblySource (qpTestLog* log, const char* source)
1267 deBool qpTestLog_writeCompileInfo (qpTestLog* log, const char* name, const char* description, deBool compileOk, const char* infoLog)
1292 deBool qpTestLog_startSampleList (qpTestLog* log, const char* name, const char* description)
1316 deBool qpTestLog_startSampleInfo (qpTestLog* log)
1334 deBool qpTestLog_writeValueInfo (qpTestLog* log, const char* name, const char* description, const char* unit, qpSampleValueTag tag)
1364 deBool qpTestLog_endSampleInfo (qpTestLog* log)
1382 deBool qpTestLog_startSample (qpTestLog* log)
1402 deBool qpTestLog_writeValueFloat (qpTestLog* log, double value)
1422 deBool qpTestLog_writeValueInteger (qpTestLog* log, deInt64 value)
1442 deBool qpTestLog_endSample (qpTestLog* log)
1460 deBool qpTestLog_endSampleList (qpTestLog* log)
1478 deUint32 qpTestLog_getLogFlags (const qpTestLog* log)