Lines Matching refs:command
274 pefree(proc->command, proc->is_persistent); in proc_open_rsrc_dtor()
405 add_assoc_string(return_value, "command", proc->command, 1); in PHP_FUNCTION()
494 char *command, *cwd=NULL; in PHP_FUNCTION() local
535 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "saz|s!a!a!", &command, in PHP_FUNCTION()
541 if (FAILURE == php_make_safe_mode_command(command, &command, is_persistent TSRMLS_CC)) { in PHP_FUNCTION()
563 command_len = strlen(command); in PHP_FUNCTION()
800 …newprocok = CreateProcess(NULL, command, &security, &security, TRUE, dwCreateFlags, env.envp, cwd,… in PHP_FUNCTION()
802 spprintf(&command_with_cmd, 0, "%s /c %s", COMSPEC_NT, command); in PHP_FUNCTION()
840 command_dup = strdup(command); in PHP_FUNCTION()
925 execle("/bin/sh", "sh", "-c", command, NULL, env.envarray); in PHP_FUNCTION()
927 execl("/bin/sh", "sh", "-c", command, NULL); in PHP_FUNCTION()
953 proc->command = command; in PHP_FUNCTION()
1035 pefree(command, is_persistent); in PHP_FUNCTION()