Searched refs:startInfo (Results 1 - 3 of 3) sorted by relevance
/third_party/skia/third_party/externals/angle2/util/windows/ |
H A D | test_utils_win.cpp | 162 STARTUPINFOA startInfo = {}; in WindowsProcess() local 172 startInfo.cb = sizeof(STARTUPINFOA); in WindowsProcess() 173 startInfo.hStdInput = ::GetStdHandle(STD_INPUT_HANDLE); in WindowsProcess() 180 startInfo.hStdOutput = mStdoutPipe.writeHandle; in WindowsProcess() 184 startInfo.hStdOutput = ::GetStdHandle(STD_OUTPUT_HANDLE); in WindowsProcess() 189 startInfo.hStdError = startInfo.hStdOutput; in WindowsProcess() 197 startInfo.hStdError = mStderrPipe.writeHandle; in WindowsProcess() 201 startInfo.hStdError = ::GetStdHandle(STD_ERROR_HANDLE); in WindowsProcess() 207 startInfo in WindowsProcess() [all...] |
/third_party/vk-gl-cts/execserver/ |
H A D | xsWin32TestProcess.cpp | 515 STARTUPINFO startInfo; in start() local 517 deMemset(&startInfo, 0, sizeof(startInfo)); in start() 535 startInfo.cb = sizeof(startInfo); in start() 536 startInfo.hStdError = stdErrWrite; in start() 537 startInfo.hStdOutput = stdOutWrite; in start() 538 startInfo.hStdInput = stdInRead; in start() 539 startInfo.dwFlags |= STARTF_USESTDHANDLES; in start() 541 if (!CreateProcess(DE_NULL, (LPTSTR)commandLine, DE_NULL, DE_NULL, TRUE /* inherit handles */, 0, DE_NULL, workingDirectory, &startInfo, in start() [all...] |
/third_party/vk-gl-cts/framework/delibs/deutil/ |
H A D | deProcess.c | 631 STARTUPINFO startInfo; in deProcess_start() local 653 deMemset(&startInfo, 0, sizeof(startInfo)); in deProcess_start() 696 startInfo.cb = sizeof(startInfo); in deProcess_start() 697 startInfo.hStdError = stdErrWrite; in deProcess_start() 698 startInfo.hStdOutput = stdOutWrite; in deProcess_start() 699 startInfo.hStdInput = stdInRead; in deProcess_start() 700 startInfo.dwFlags |= STARTF_USESTDHANDLES; in deProcess_start() 702 if (!CreateProcess(DE_NULL, (LPTSTR)commandLine, DE_NULL, DE_NULL, TRUE /* inherit handles */, 0, DE_NULL, workingDirectory, &startInfo, in deProcess_start() [all...] |
Completed in 3 milliseconds