Lines Matching refs:m_log
72 : m_log(other.m_log) in MessageBuilder()
79 m_log = other.m_log; in operator =()
86 m_log->writeMessage(m_str.str().c_str()); in operator <<()
87 return *m_log; in operator <<()
94 m_log->startSample(); in operator <<()
99 m_log->writeSampleValue(val->value.float64); in operator <<()
101 m_log->writeSampleValue(val->value.int64); in operator <<()
106 m_log->endSample(); in operator <<()
108 return *m_log; in operator <<()
114 : m_log(qpTestLog_createFileLog(fileName, flags)) in TestLog()
116 if (!m_log) in TestLog()
122 qpTestLog_destroy(m_log); in ~TestLog()
127 if (qpTestLog_writeText(m_log, DE_NULL, DE_NULL, QP_KEY_TAG_LAST, msgStr) == DE_FALSE) in writeMessage()
133 if (qpTestLog_startImageSet(m_log, name, description) == DE_FALSE) in startImageSet()
139 if (qpTestLog_endImageSet(m_log) == DE_FALSE) in endImageSet()
174 if ((qpTestLog_getLogFlags(m_log) & QP_TEST_LOG_EXCLUDE_IMAGES) != 0) in writeImage()
289 …if (qpTestLog_writeImage(m_log, name, description, compressionMode, format, width, height, stride,… in writeImage()
295 if (qpTestLog_startSection(m_log, name, description) == DE_FALSE) in startSection()
301 if (qpTestLog_endSection(m_log) == DE_FALSE) in endSection()
307 if (qpTestLog_startShaderProgram(m_log, linkOk?DE_TRUE:DE_FALSE, linkInfoLog) == DE_FALSE) in startShaderProgram()
313 if (qpTestLog_endShaderProgram(m_log) == DE_FALSE) in endShaderProgram()
319 if (qpTestLog_writeShader(m_log, type, source, compileOk?DE_TRUE:DE_FALSE, infoLog) == DE_FALSE) in writeShader()
325 if (qpTestLog_writeKernelSource(m_log, source) == DE_FALSE) in writeKernelSource()
331 …if (qpTestLog_writeCompileInfo(m_log, name, description, compileOk ? DE_TRUE : DE_FALSE, infoLog) … in writeCompileInfo()
337 if (qpTestLog_writeFloat(m_log, name, description, unit, tag, value) == DE_FALSE) in writeFloat()
343 if (qpTestLog_writeInteger(m_log, name, description, unit, tag, value) == DE_FALSE) in writeInteger()
349 if (qpTestLog_startEglConfigSet(m_log, name, description) == DE_FALSE) in startEglConfigSet()
355 if (qpTestLog_writeEglConfig(m_log, config) == DE_FALSE) in writeEglConfig()
361 if (qpTestLog_endEglConfigSet(m_log) == DE_FALSE) in endEglConfigSet()
367 if (qpTestLog_startCase(m_log, testCasePath, testCaseType) == DE_FALSE) in startCase()
373 if (qpTestLog_endCase(m_log, result, description) == DE_FALSE) in endCase()
379 if (qpTestLog_terminateCase(m_log, result) == DE_FALSE) in terminateCase()
385 if (qpTestLog_startSampleList(m_log, name.c_str(), description.c_str()) == DE_FALSE) in startSampleList()
391 if (qpTestLog_startSampleInfo(m_log) == DE_FALSE) in startSampleInfo()
397 …if (qpTestLog_writeValueInfo(m_log, name.c_str(), description.c_str(), unit.empty() ? DE_NULL : un… in writeValueInfo()
403 if (qpTestLog_endSampleInfo(m_log) == DE_FALSE) in endSampleInfo()
409 if (qpTestLog_startSample(m_log) == DE_FALSE) in startSample()
415 if (qpTestLog_writeValueFloat(m_log, value) == DE_FALSE) in writeSampleValue()
421 if (qpTestLog_writeValueInteger(m_log, value) == DE_FALSE) in writeSampleValue()
427 if (qpTestLog_endSample(m_log) == DE_FALSE) in endSample()
433 if (qpTestLog_endSampleList(m_log) == DE_FALSE) in endSampleList()