Lines Matching refs:command
227 pefree(proc->command, proc->is_persistent); in proc_open_rsrc_dtor()
322 add_assoc_string(return_value, "command", proc->command); in PHP_FUNCTION()
408 char *command, *cwd=NULL; in PHP_FUNCTION() local
448 Z_PARAM_STRING(command, command_len) in PHP_FUNCTION()
457 command = pestrdup(command, is_persistent); in PHP_FUNCTION()
484 command_len = strlen(command); in PHP_FUNCTION()
730 cmdw = php_win32_cp_conv_any_to_w(command, command_len, &tmp_len); in PHP_FUNCTION()
839 execle("/bin/sh", "sh", "-c", command, NULL, env.envarray); in PHP_FUNCTION()
841 execl("/bin/sh", "sh", "-c", command, NULL); in PHP_FUNCTION()
867 proc->command = command; in PHP_FUNCTION()
951 pefree(command, is_persistent); in PHP_FUNCTION()