Lines Matching refs:command
278 pefree(proc->command, proc->is_persistent); in proc_open_rsrc_dtor()
365 add_assoc_string(return_value, "command", proc->command, 1); in PHP_FUNCTION()
454 char *command, *cwd=NULL; in PHP_FUNCTION() local
496 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "saz|s!a!a!", &command, in PHP_FUNCTION()
502 command = pestrdup(command, is_persistent); in PHP_FUNCTION()
522 command_len = strlen(command); in PHP_FUNCTION()
759 …newprocok = CreateProcess(NULL, command, &security, &security, TRUE, dwCreateFlags, env.envp, cwd,… in PHP_FUNCTION()
761 spprintf(&command_with_cmd, 0, "%s /c %s", COMSPEC_NT, command); in PHP_FUNCTION()
799 command_dup = strdup(command); in PHP_FUNCTION()
884 execle("/bin/sh", "sh", "-c", command, NULL, env.envarray); in PHP_FUNCTION()
886 execl("/bin/sh", "sh", "-c", command, NULL); in PHP_FUNCTION()
912 proc->command = command; in PHP_FUNCTION()
994 pefree(command, is_persistent); in PHP_FUNCTION()