Lines Matching refs:startup
450 STARTUPINFOW startup; in popen_ex() local
513 memset(&startup, 0, sizeof(STARTUPINFOW)); in popen_ex()
516 startup.cb = sizeof(STARTUPINFOW); in popen_ex()
517 startup.dwFlags = STARTF_USESTDHANDLES; in popen_ex()
518 startup.hStdError = GetStdHandle(STD_ERROR_HANDLE); in popen_ex()
525 startup.hStdInput = GetStdHandle(STD_INPUT_HANDLE); in popen_ex()
526 startup.hStdOutput = out; in popen_ex()
529 startup.hStdInput = in; in popen_ex()
530 startup.hStdOutput = GetStdHandle(STD_OUTPUT_HANDLE); in popen_ex()
561 …mdw, &security, &security, security.bInheritHandle, dwCreateFlags, envw, cwdw, &startup, &process); in popen_ex()
564 …mdw, &security, &security, security.bInheritHandle, dwCreateFlags, envw, cwdw, &startup, &process); in popen_ex()