Lines Matching refs:command
233 pefree(proc->command, proc->is_persistent); in proc_open_rsrc_dtor()
326 add_assoc_string(return_value, "command", proc->command); in PHP_FUNCTION()
415 char *command, *cwd=NULL; in PHP_FUNCTION() local
460 if (zend_parse_parameters(ZEND_NUM_ARGS(), "saz/|s!a!a!", &command, in PHP_FUNCTION()
466 command = pestrdup(command, is_persistent); in PHP_FUNCTION()
493 command_len = strlen(command); in PHP_FUNCTION()
725 …newprocok = CreateProcess(NULL, command, &security, &security, TRUE, dwCreateFlags, env.envp, cwd,… in PHP_FUNCTION()
727 spprintf(&command_with_cmd, 0, "%s /c %s", COMSPEC_NT, command); in PHP_FUNCTION()
765 command_dup = strdup(command); in PHP_FUNCTION()
849 execle("/bin/sh", "sh", "-c", command, NULL, env.envarray); in PHP_FUNCTION()
851 execl("/bin/sh", "sh", "-c", command, NULL); in PHP_FUNCTION()
877 proc->command = command; in PHP_FUNCTION()
964 pefree(command, is_persistent); in PHP_FUNCTION()