Home
last modified time | relevance | path

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

/netbsd-src/external/gpl2/gmake/dist/w32/subproc/
H A Dsub_proc.c423 STARTUPINFO startInfo; in process_begin() local
526 GetStartupInfo(&startInfo); in process_begin()
527 startInfo.dwFlags = STARTF_USESTDHANDLES; in process_begin()
528 startInfo.lpReserved = 0; in process_begin()
529 startInfo.cbReserved2 = 0; in process_begin()
530 startInfo.lpReserved2 = 0; in process_begin()
531 startInfo.lpTitle = shell_name ? shell_name : exec_path; in process_begin()
532 startInfo.hStdInput = (HANDLE)pproc->sv_stdin[1]; in process_begin()
533 startInfo.hStdOutput = (HANDLE)pproc->sv_stdout[1]; in process_begin()
534 startInfo.hStdError = (HANDLE)pproc->sv_stderr[1]; in process_begin()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/
H A DMacroInfo.cpp55 startInfo = SM.getDecomposedExpansionLoc(macroStart); in getDefinitionLengthSlow() local
58 assert(startInfo.first == endInfo.first && in getDefinitionLengthSlow()
60 assert(startInfo.second <= endInfo.second); in getDefinitionLengthSlow()
61 DefinitionLength = endInfo.second - startInfo.second; in getDefinitionLengthSlow()