Lines Matching refs:command
228 pefree(proc->command, proc->is_persistent); in proc_open_rsrc_dtor()
323 add_assoc_string(return_value, "command", proc->command); in PHP_FUNCTION()
409 char *command, *cwd=NULL; in PHP_FUNCTION() local
449 Z_PARAM_STRING(command, command_len) in PHP_FUNCTION()
458 command = pestrdup(command, is_persistent); in PHP_FUNCTION()
485 command_len = strlen(command); in PHP_FUNCTION()
731 cmdw = php_win32_cp_conv_any_to_w(command, command_len, &tmp_len); in PHP_FUNCTION()
840 execle("/bin/sh", "sh", "-c", command, NULL, env.envarray); in PHP_FUNCTION()
842 execl("/bin/sh", "sh", "-c", command, NULL); in PHP_FUNCTION()
868 proc->command = command; in PHP_FUNCTION()
952 pefree(command, is_persistent); in PHP_FUNCTION()