Lines Matching defs:process
368 // Tests run in main process are only used to collect data required by Vulkan SC.
369 // That's why we turn off any output in main process and copy output from subprocess when subprocess tests are performed
792 // add --deqp-subprocess option to inform deqp-vksc process that it works as slave process
888 deProcess* process = deProcess_create();
889 if (deProcess_start(process, newCmdLine.c_str(), ".") != DE_TRUE)
891 std::string err = deProcess_getLastError(process);
892 deProcess_destroy(process);
893 process = DE_NULL;
900 de::MovePtr<std::thread> errThread(new std::thread([&process]
902 deFile* subErr = deProcess_getStdErr(process);
911 deFile* subOutput = deProcess_getStdOut(process);
921 if (deProcess_waitForFinish(process))
923 const int exitCode = deProcess_getExitCode(process);
930 deProcess_destroy(process);