HomeSort by relevance Sort by last modified time
    Searched refs:startInfo (Results 1 - 3 of 3) sorted by null

  /external/clang/lib/Lex/
MacroInfo.cpp 53 startInfo = SM.getDecomposedExpansionLoc(macroStart);
56 assert(startInfo.first == endInfo.first &&
58 assert(startInfo.second <= endInfo.second);
59 DefinitionLength = endInfo.second - startInfo.second;
  /external/deqp/execserver/
xsWin32TestProcess.cpp 515 STARTUPINFO startInfo;
517 deMemset(&startInfo, 0, sizeof(startInfo));
535 startInfo.cb = sizeof(startInfo);
536 startInfo.hStdError = stdErrWrite;
537 startInfo.hStdOutput = stdOutWrite;
538 startInfo.hStdInput = stdInRead;
539 startInfo.dwFlags |= STARTF_USESTDHANDLES;
541 if (!CreateProcess(DE_NULL, (LPTSTR)commandLine, DE_NULL, DE_NULL, TRUE /* inherit handles */, 0, DE_NULL, workingDirectory, &startInfo, &m_procInfo)
    [all...]
  /external/deqp/framework/delibs/deutil/
deProcess.c 631 STARTUPINFO startInfo;
653 deMemset(&startInfo, 0, sizeof(startInfo));
696 startInfo.cb = sizeof(startInfo);
697 startInfo.hStdError = stdErrWrite;
698 startInfo.hStdOutput = stdOutWrite;
699 startInfo.hStdInput = stdInRead;
700 startInfo.dwFlags |= STARTF_USESTDHANDLES;
702 if (!CreateProcess(DE_NULL, (LPTSTR)commandLine, DE_NULL, DE_NULL, TRUE /* inherit handles */, 0, DE_NULL, workingDirectory, &startInfo, &process->procInfo)
    [all...]

Completed in 137 milliseconds