Searched refs:startInfo (Results 1 – 2 of 2) sorted by relevance
75 startInfo = SM.getDecomposedExpansionLoc(macroStart); in getDefinitionLengthSlow() local78 assert(startInfo.first == endInfo.first && in getDefinitionLengthSlow()80 assert(startInfo.second <= endInfo.second); in getDefinitionLengthSlow()81 DefinitionLength = endInfo.second - startInfo.second; in getDefinitionLengthSlow()
6295 STARTUPINFO startInfo; in JimStartWinProcess() local6312 ZeroMemory(&startInfo, sizeof(startInfo)); in JimStartWinProcess()6313 startInfo.cb = sizeof(startInfo); in JimStartWinProcess()6314 startInfo.dwFlags = STARTF_USESTDHANDLES; in JimStartWinProcess()6315 startInfo.hStdInput = INVALID_HANDLE_VALUE; in JimStartWinProcess()6316 startInfo.hStdOutput= INVALID_HANDLE_VALUE; in JimStartWinProcess()6317 startInfo.hStdError = INVALID_HANDLE_VALUE; in JimStartWinProcess()6322 DuplicateHandle(hProcess, (HANDLE)_get_osfhandle(inputId), hProcess, &startInfo.hStdInput, in JimStartWinProcess()6324 if (startInfo.hStdInput == INVALID_HANDLE_VALUE) { in JimStartWinProcess()6331 DuplicateHandle(hProcess, (HANDLE)_get_osfhandle(outputId), hProcess, &startInfo.hStdOutput, in JimStartWinProcess()[all …]