Home
last modified time | relevance | path

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

/src/contrib/llvm-project/clang/lib/Lex/
H A DMacroInfo.cpp75 startInfo = SM.getDecomposedExpansionLoc(macroStart); in getDefinitionLengthSlow() local
78 assert(startInfo.first == endInfo.first && in getDefinitionLengthSlow()
80 assert(startInfo.second <= endInfo.second); in getDefinitionLengthSlow()
81 DefinitionLength = endInfo.second - startInfo.second; in getDefinitionLengthSlow()
/src/contrib/sqlite3/autosetup/
H A Djimsh0.c6295 STARTUPINFO startInfo; in JimStartWinProcess() local
6312 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 …]