Lines Matching refs:startup
478 STARTUPINFOW startup; in popen_ex() local
542 memset(&startup, 0, sizeof(STARTUPINFOW)); in popen_ex()
545 startup.cb = sizeof(STARTUPINFOW); in popen_ex()
546 startup.dwFlags = STARTF_USESTDHANDLES; in popen_ex()
547 startup.hStdError = GetStdHandle(STD_ERROR_HANDLE); in popen_ex()
554 startup.hStdInput = GetStdHandle(STD_INPUT_HANDLE); in popen_ex()
555 startup.hStdOutput = out; in popen_ex()
558 startup.hStdInput = in; in popen_ex()
559 startup.hStdOutput = GetStdHandle(STD_OUTPUT_HANDLE); in popen_ex()
590 …mdw, &security, &security, security.bInheritHandle, dwCreateFlags, envw, cwdw, &startup, &process); in popen_ex()
593 …mdw, &security, &security, security.bInheritHandle, dwCreateFlags, envw, cwdw, &startup, &process); in popen_ex()