Lines Matching refs:m_process
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()
64 throw ProcessError(deProcess_getLastError(m_process)); in kill()
69 if (!deProcess_closeStdIn(m_process)) in closeStdIn()
70 throw ProcessError(deProcess_getLastError(m_process)); in closeStdIn()
75 if (!deProcess_closeStdOut(m_process)) in closeStdOut()
76 throw ProcessError(deProcess_getLastError(m_process)); in closeStdOut()
81 if (!deProcess_closeStdErr(m_process)) in closeStdErr()
82 throw ProcessError(deProcess_getLastError(m_process)); in closeStdErr()