Home
last modified time | relevance | path

Searched refs:startInfo (Results 1 – 4 of 4) sorted by relevance

/external/deqp/execserver/
DxsWin32TestProcess.cpp515 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 …_NULL, DE_NULL, TRUE /* inherit handles */, 0, DE_NULL, workingDirectory, &startInfo, &m_procInfo)) in start()
/external/deqp/framework/delibs/deutil/
DdeProcess.c631 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 …LL, DE_NULL, TRUE /* inherit handles */, 0, DE_NULL, workingDirectory, &startInfo, &process->procI… in deProcess_start()
/external/clang/lib/Lex/
DMacroInfo.cpp53 startInfo = SM.getDecomposedExpansionLoc(macroStart); in getDefinitionLengthSlow() local
56 assert(startInfo.first == endInfo.first && in getDefinitionLengthSlow()
58 assert(startInfo.second <= endInfo.second); in getDefinitionLengthSlow()
59 DefinitionLength = endInfo.second - startInfo.second; in getDefinitionLengthSlow()
/external/r8/src/main/java/com/android/tools/r8/ir/conversion/
DDexBuilder.java497 Info startInfo = getInfo(block.entry());
499 int start = startInfo.getOffset();