Lines Matching refs:si
456 STARTUPINFO si; in PHP_FUNCTION() local
709 memset(&si, 0, sizeof(si)); in PHP_FUNCTION()
710 si.cb = sizeof(si); in PHP_FUNCTION()
711 si.dwFlags = STARTF_USESTDHANDLES; in PHP_FUNCTION()
713 si.hStdInput = GetStdHandle(STD_INPUT_HANDLE); in PHP_FUNCTION()
714 si.hStdOutput = GetStdHandle(STD_OUTPUT_HANDLE); in PHP_FUNCTION()
715 si.hStdError = GetStdHandle(STD_ERROR_HANDLE); in PHP_FUNCTION()
721 si.hStdInput = descriptors[i].childend; in PHP_FUNCTION()
724 si.hStdOutput = descriptors[i].childend; in PHP_FUNCTION()
727 si.hStdError = descriptors[i].childend; in PHP_FUNCTION()
745 …= CreateProcess(NULL, command, &security, &security, TRUE, dwCreateFlags, env.envp, cwd, &si, &pi); in PHP_FUNCTION()
749 …rocess(NULL, command_with_cmd, &security, &security, TRUE, dwCreateFlags, env.envp, cwd, &si, &pi); in PHP_FUNCTION()