Lines Matching refs:startup
461 STARTUPINFO startup; in popen_ex() local
500 memset(&startup, 0, sizeof(STARTUPINFO)); in popen_ex()
503 startup.cb = sizeof(STARTUPINFO); in popen_ex()
504 startup.dwFlags = STARTF_USESTDHANDLES; in popen_ex()
505 startup.hStdError = GetStdHandle(STD_ERROR_HANDLE); in popen_ex()
512 startup.hStdInput = GetStdHandle(STD_INPUT_HANDLE); in popen_ex()
513 startup.hStdOutput = out; in popen_ex()
516 startup.hStdInput = in; in popen_ex()
517 startup.hStdOutput = GetStdHandle(STD_OUTPUT_HANDLE); in popen_ex()
542 …, cmd, &security, &security, security.bInheritHandle, dwCreateFlags, env, cwd, &startup, &process); in popen_ex()
545 …, cmd, &security, &security, security.bInheritHandle, dwCreateFlags, env, cwd, &startup, &process); in popen_ex()