Home | History | Annotate | Download | only in common

Lines Matching refs:m_log

142 	: m_log(other.m_log)
149 m_log = other.m_log;
156 m_log->writeMessage(m_str.str().c_str());
157 return *m_log;
164 m_log->startSample();
169 m_log->writeSampleValue(val->value.float64);
171 m_log->writeSampleValue(val->value.int64);
176 m_log->endSample();
178 return *m_log;
184 : m_log(qpTestLog_createFileLog(fileName, flags))
186 if (!m_log)
192 qpTestLog_destroy(m_log);
197 if (qpTestLog_writeText(m_log, DE_NULL, DE_NULL, QP_KEY_TAG_LAST, msgStr) == DE_FALSE)
203 if (qpTestLog_startImageSet(m_log, name, description) == DE_FALSE)
209 if (qpTestLog_endImageSet(m_log) == DE_FALSE)
247 if ((qpTestLog_getLogFlags(m_log) & QP_TEST_LOG_EXCLUDE_IMAGES) != 0)
362 if (qpTestLog_writeImage(m_log, name, description, compressionMode, format, width, height, stride, data) == DE_FALSE)
368 if (qpTestLog_startSection(m_log, name, description) == DE_FALSE)
374 if (qpTestLog_endSection(m_log) == DE_FALSE)
380 if (qpTestLog_startShaderProgram(m_log, linkOk?DE_TRUE:DE_FALSE, linkInfoLog) == DE_FALSE)
386 if (qpTestLog_endShaderProgram(m_log) == DE_FALSE)
392 if (qpTestLog_writeShader(m_log, type, source, compileOk?DE_TRUE:DE_FALSE, infoLog) == DE_FALSE)
398 if (qpTestLog_writeSpirVAssemblySource(m_log, source) == DE_FALSE)
404 if (qpTestLog_writeKernelSource(m_log, source) == DE_FALSE)
410 if (qpTestLog_writeCompileInfo(m_log, name, description, compileOk ? DE_TRUE : DE_FALSE, infoLog) == DE_FALSE)
416 if (qpTestLog_writeFloat(m_log, name, description, unit, tag, value) == DE_FALSE)
422 if (qpTestLog_writeInteger(m_log, name, description, unit, tag, value) == DE_FALSE)
428 if (qpTestLog_startEglConfigSet(m_log, name, description) == DE_FALSE)
434 if (qpTestLog_writeEglConfig(m_log, config) == DE_FALSE)
440 if (qpTestLog_endEglConfigSet(m_log) == DE_FALSE)
446 if (qpTestLog_startCase(m_log, testCasePath, testCaseType) == DE_FALSE)
452 if (qpTestLog_endCase(m_log, result, description) == DE_FALSE)
458 if (qpTestLog_terminateCase(m_log, result) == DE_FALSE)
464 if (qpTestLog_startSampleList(m_log, name.c_str(), description.c_str()) == DE_FALSE)
470 if (qpTestLog_startSampleInfo(m_log) == DE_FALSE)
476 if (qpTestLog_writeValueInfo(m_log, name.c_str(), description.c_str(), unit.empty() ? DE_NULL : unit.c_str(), tag) == DE_FALSE)
482 if (qpTestLog_endSampleInfo(m_log) == DE_FALSE)
488 if (qpTestLog_startSample(m_log) == DE_FALSE)
494 if (qpTestLog_writeValueFloat(m_log, value) == DE_FALSE)
500 if (qpTestLog_writeValueInteger(m_log, value) == DE_FALSE)
506 if (qpTestLog_endSample(m_log) == DE_FALSE)
512 if (qpTestLog_endSampleList(m_log) == DE_FALSE)