Lines Matching refs:Process
390 // Process
392 Process::Process (void)
402 Process::~Process (void)
419 void Process::cleanupHandles (void)
492 void Process::start (const char* commandLine, const char* workingDirectory)
503 throw std::runtime_error("Process already running");
506 // Process finished, clean up old cruft.
568 bool Process::isRunning (void)
592 void Process::waitForFinish (void)
600 throw std::runtime_error("Process is still alive");
603 throw std::runtime_error("Process is not running");
606 void Process::stopProcess (bool kill)
614 throw std::runtime_error("Process is not running");
617 void Process::terminate (void)
622 void Process::kill (void)
681 m_process = new win32::Process();