Searched refs:m_process (Results 1 – 12 of 12) sorted by relevance
/external/deqp/framework/delibs/decpp/ |
D | deProcess.cpp | 32 : m_process(deProcess_create()) in Process() 34 if (!m_process) in Process() 40 deProcess_destroy(m_process); in ~Process() 45 if (!deProcess_start(m_process, commandLine, workingDirectory)) in start() 46 throw ProcessError(deProcess_getLastError(m_process)); in start() 51 if (!deProcess_waitForFinish(m_process)) in waitForFinish() 52 throw ProcessError(deProcess_getLastError(m_process)); in waitForFinish() 57 if (!deProcess_terminate(m_process)) in terminate() 58 throw ProcessError(deProcess_getLastError(m_process)); in terminate() 63 if (!deProcess_kill(m_process)) in kill() [all …]
|
D | deProcess.hpp | 53 bool isRunning (void) { return deProcess_isRunning(m_process) == DE_TRUE; } in isRunning() 54 int getExitCode (void) const { return deProcess_getExitCode(m_process); } in getExitCode() 56 deFile* getStdIn (void) { return deProcess_getStdIn(m_process); } in getStdIn() 57 deFile* getStdOut (void) { return deProcess_getStdOut(m_process); } in getStdOut() 58 deFile* getStdErr (void) { return deProcess_getStdErr(m_process); } in getStdErr() 68 deProcess* m_process; member in de::Process
|
/external/deqp/executor/ |
D | xeLocalTcpIpLink.cpp | 40 : m_process(DE_NULL) in LocalTcpIpLink() 51 XE_CHECK(!m_process); in start() 56 m_process = deProcess_create(); in start() 57 XE_CHECK(m_process); in start() 59 if (deProcess_start(m_process, cmdLine.str().c_str(), workDir) != DE_TRUE) in start() 61 std::string err = deProcess_getLastError(m_process); in start() 62 deProcess_destroy(m_process); in start() 63 m_process = DE_NULL; in start() 80 if (!deProcess_isRunning(m_process)) in start() 99 XE_CHECK(deProcess_closeStdOut(m_process)); in start() [all …]
|
D | xeLocalTcpIpLink.hpp | 57 deProcess* m_process; member in xe::LocalTcpIpLink
|
/external/deqp/execserver/ |
D | xsPosixTestProcess.cpp | 172 : m_process (DE_NULL) in PosixTestProcess() 183 delete m_process; in ~PosixTestProcess() 190 XS_CHECK(!m_process); in start() 212 DE_ASSERT(!m_process); in start() 213 m_process = new de::Process(); in start() 217 m_process->start(cmdLine.c_str(), strlen(workingDir) > 0 ? workingDir : DE_NULL); in start() 221 delete m_process; in start() 222 m_process = DE_NULL; in start() 229 if (m_process->getStdOut()) in start() 230 m_stdOutReader.start(m_process->getStdOut()); in start() [all …]
|
D | xsWin32TestProcess.cpp | 630 : m_process (DE_NULL) in Win32TestProcess() 640 delete m_process; in ~Win32TestProcess() 647 XS_CHECK(!m_process); in start() 680 DE_ASSERT(!m_process); in start() 681 m_process = new win32::Process(); in start() 685 m_process->start(cmdLine.c_str(), strlen(workingDir) > 0 ? workingDir : DE_NULL); in start() 689 delete m_process; in start() 690 m_process = DE_NULL; in start() 697 m_stdOutReader.start(m_process->getStdOut()); in start() 698 m_stdErrReader.start(m_process->getStdErr()); in start() [all …]
|
D | xsTestDriver.cpp | 46 , m_process (testProcess) in TestDriver() 59 m_process->cleanup(); in reset() 68 m_process->start(name, params, workingDir, caseList); in startProcess() 81 m_process->terminate(); in stopProcess() 124 if (!m_process->isRunning()) in poll() 128 m_lastExitCode = m_process->getExitCode(); in poll() 167 m_process->cleanup(); in poll() 205 ? m_process->readTestLog(&m_dataMsgTmpBuf[MESSAGE_HEADER_SIZE], maxMsgSize-MESSAGE_HEADER_SIZE-1) in pollBuffer() 206 … : m_process->readInfoLog(&m_dataMsgTmpBuf[MESSAGE_HEADER_SIZE], maxMsgSize-MESSAGE_HEADER_SIZE-1); in pollBuffer()
|
D | xsTestDriver.hpp | 72 xs::TestProcess* m_process; member in xs::TestDriver
|
D | xsPosixTestProcess.hpp | 96 de::Process* m_process; member in xs::PosixTestProcess
|
D | xsWin32TestProcess.hpp | 199 win32::Process* m_process; member in xs::Win32TestProcess
|
/external/deqp/framework/platform/android/ |
D | tcuAndroidExecService.cpp | 354 : m_process (vm, context) in ExecService() 355 , m_thread (vm, &m_process, family, port) in ExecService()
|
D | tcuAndroidExecService.hpp | 121 TestProcess m_process; member in tcu::Android::ExecService
|