Searched refs:m_logFileName (Results 1 - 8 of 8) sorted by relevance

/external/deqp/android/package/src/com/drawelements/deqp/testercore/
H A DTestLogParser.java39 private String m_logFileName; field in class:TestLogParser
59 m_logFileName = logFileName;
63 m_log = new FileInputStream(m_logFileName);
H A DDeqpInstrumentation.java41 private String m_logFileName; field in class:DeqpInstrumentation
49 m_logFileName = arguments.getString("deqpLogFilename");
54 if (m_logFileName == null)
55 m_logFileName = "/sdcard/TestLog.qpa";
74 final RemoteAPI remoteApi = new RemoteAPI(getTargetContext(), m_logFileName);
82 final File logFile = new File(m_logFileName);
108 parser.init(this, m_logFileName, m_logData);
H A DRemoteAPI.java40 private String m_logFileName; field in class:RemoteAPI
46 m_logFileName = logFileName;
77 cmdLine = testerName + " " + cmdLine + " --deqp-log-filename=" + m_logFileName;
139 return m_logFileName;
/external/deqp/execserver/
H A DxsPosixTestProcess.cpp193 m_logFileName = logFilePath.getPath();
196 if (deFileExists(m_logFileName.c_str()))
198 if (!deDeleteFile(m_logFileName.c_str()) || deFileExists(m_logFileName.c_str()))
199 throw TestProcessException(string("Failed to remove '") + m_logFileName + "'");
325 if (!deFileExists(m_logFileName.c_str()))
329 m_logReader.start(m_logFileName.c_str());
H A DxsPosixTestProcess.hpp98 std::string m_logFileName; member in class:xs::PosixTestProcess
H A DxsWin32TestProcess.cpp650 m_logFileName = logFilePath.getPath();
658 while (tryNdx < MAX_OLD_LOGFILE_DELETE_ATTEMPTS && deFileExists(m_logFileName.c_str()))
660 if (deDeleteFile(m_logFileName.c_str()))
666 if (deFileExists(m_logFileName.c_str()))
667 throw TestProcessException(string("Failed to remove '") + m_logFileName + "'");
765 if (!deFileExists(m_logFileName.c_str()))
769 m_testLogReader.start(m_logFileName.c_str());
H A DxsWin32TestProcess.hpp201 std::string m_logFileName; member in class:xs::Win32TestProcess
/external/deqp/framework/platform/ios/
H A DtcuIOSApp.mm137 const char* getLogFileName (void) const { return m_logFileName.c_str(); }
141 string m_logFileName;
148 , m_logFileName (logFileName)
163 if (deFileExists(m_logFileName.c_str()))
164 TCU_CHECK(deDeleteFile(m_logFileName.c_str()));
212 if (!deFileExists(m_logFileName.c_str()))
216 m_logReader.start(m_logFileName.c_str());

Completed in 373 milliseconds