Home
last modified time | relevance | path

Searched refs:cmd (Results 1 – 25 of 82) sorted by relevance

1234

/php-src/ext/standard/
H A Dexec.c208 char *cmd; in php_exec_ex() local
287 zend_string *cmd; in php_escape_shell_cmd() local
367 ZSTR_VAL(cmd)[y] = '\0'; in php_escape_shell_cmd() local
378 cmd = zend_string_truncate(cmd, y, 0); in php_escape_shell_cmd()
381 ZSTR_LEN(cmd) = y; in php_escape_shell_cmd()
383 return cmd; in php_escape_shell_cmd()
392 zend_string *cmd; in php_escape_shell_arg() local
453 ZSTR_VAL(cmd)[y] = '\0'; in php_escape_shell_arg() local
464 cmd = zend_string_truncate(cmd, y, 0); in php_escape_shell_arg()
466 ZSTR_LEN(cmd) = y; in php_escape_shell_arg()
[all …]
/php-src/ext/standard/tests/file/windows_acls/
H A Dcommon.inc77 exec($cmd);
86 exec($cmd);
88 exec($cmd);
101 exec($cmd);
108 $cmd = $icacls . ' ' . $path_escaped . ' /remove:d ' . $user;
109 exec($cmd);
111 exec($cmd);
126 exec($cmd);
128 exec($cmd);
131 $cmd .= ':' . '(' . implode(',', $perm_entry) . ')';
[all …]
/php-src/sapi/apache2handler/
H A Dapache_config.c70 e.value = apr_pstrdup(cmd->pool, value); in real_value_hnd()
73 e.htaccess = ((cmd->override & (RSRC_CONF|ACCESS_CONF)) == 0); in real_value_hnd()
79 static const char *php_apache_value_handler(cmd_parms *cmd, void *dummy, const char *name, const ch… in php_apache_value_handler() argument
81 return real_value_hnd(cmd, dummy, name, value, PHP_INI_PERDIR); in php_apache_value_handler()
86 return real_value_hnd(cmd, dummy, name, value, PHP_INI_SYSTEM); in php_apache_admin_value_handler()
100 return real_value_hnd(cmd, dummy, arg1, bool_val, status); in real_flag_hnd()
103 static const char *php_apache_flag_handler(cmd_parms *cmd, void *dummy, const char *name, const cha… in php_apache_flag_handler() argument
105 return real_flag_hnd(cmd, dummy, name, value, PHP_INI_PERDIR); in php_apache_flag_handler()
110 return real_flag_hnd(cmd, dummy, name, value, PHP_INI_SYSTEM); in php_apache_admin_flag_handler()
113 static const char *php_apache_phpini_set(cmd_parms *cmd, void *mconfig, const char *arg) in php_apache_phpini_set() argument
[all …]
/php-src/ext/standard/tests/file/
H A Dbug22414.phpt23 …$cmd = $php_escaped . $args . ' -r ' . escapeshellarg("readfile(@getenv('TEST_PHP_EXECUTABLE'));");
25 …$cmd = $php_escaped . $args . ' -r ' . escapeshellarg('passthru("'.$cmd.'");') . ' > '.escapeshell…
27 …$cmd = $php_escaped . $args . ' -r ' . "\"passthru('".addslashes($cmd)."');\"" . ' > '.escapeshell…
29 exec($cmd);
H A Dbug77552.phpt18 $cmd = sprintf('mklink /J "%s" "%s"', $junction, $target);
19 exec($cmd);
28 $cmd = sprintf('rmdir /S /Q "%s"', $tmpDir);
29 exec($cmd);
/php-src/ext/sqlite3/tests/
H A Dsqlite3_15_open_error-win.phpt19 $cmd = $icacls . ' ' . $unreadable . ' /inheritance:r /deny ' . $user . ':(F,M,R,RX,W)';
20 exec($cmd);
29 $cmd = $icacls . ' ' . $unreadable . ' /grant ' . $user . ':(F,M,R,RX,W)';
30 exec($cmd);
/php-src/ext/standard/tests/misc/
H A Dexec_basic1.phpt10 $cmd = "echo abc\n\0command";
12 var_dump(exec($cmd, $output));
17 var_dump(system($cmd, $output));
22 var_dump(passthru($cmd, $output));
/php-src/build/
H A Dorder_by_dep.awk9 function get_deps(module_name, module_dir, depline, cmd)
14 cmd = "grep PHP_ADD_EXTENSION_DEP " module_dir "/config*.m4"
15 while (cmd | getline) {
22 close(cmd)
/php-src/ext/standard/tests/streams/
H A Dbug78883.phpt16 $cmd = 'cmd.exe "/c START ^"^" /WAIT ' . getenv('TEST_PHP_EXECUTABLE_ESCAPED') . ' -r ^"var_dump(fg…
17 $proc = proc_open($cmd, $descriptorspec, $pipes);
24 // thus cmd is still running and we should kill it
H A Dstream_get_meta_data_process_basic.phpt7 $cmd = "echo here is some output";
9 $handle = popen($cmd, $mode);
H A Dproc_open_bug64438.phpt9 …$cmd = getenv('TEST_PHP_EXECUTABLE_ESCAPED') . ' -n -r "fwrite(STDOUT, $in = file_get_contents(\'p…
11 …$cmd = getenv('TEST_PHP_EXECUTABLE_ESCAPED') . ' -n -r \'fwrite(STDOUT, $in = file_get_contents("p…
17 $process = proc_open($cmd, $descriptors, $pipes, getcwd(), array(), $options);
H A Dbug64770.phpt14 $cmd = (substr(PHP_OS, 0, 3) == 'WIN') ? 'dir' : 'ls';
15 $p = proc_open($cmd, $descs, $pipes, '.', NULL, $other_opts);
/php-src/ext/standard/tests/general_functions/
H A Dproc_open_null.phpt7 $cmd = [$php, '-r', 'echo "Test"; fprintf(STDERR, "Error");'];
9 $proc = proc_open($cmd, [1 => ['null'], 2 => ['pipe', 'w']], $pipes);
14 $proc = proc_open($cmd, [1 => ['pipe', 'w'], 2 => ['null']], $pipes);
H A Dproc_open_redirect.phpt26 $cmd = [$php, '-r', 'echo "Test\n"; fprintf(STDERR, "Error");'];
27 $proc = proc_open($cmd, [1 => ['pipe', 'w'], 2 => ['redirect', 1]], $pipes);
34 $proc = proc_open($cmd, [1 => ['file', $fileName, 'w'], 2 => ['redirect', 1]], $pipes);
42 $proc = proc_open($cmd, [1 => $file, 2 => ['redirect', 1]], $pipes);
50 $proc = proc_open($cmd, [2 => ['redirect', 1]], $pipes);
H A Dghsa-pc52-254m-w9w7_2.phpt2 GHSA-54hq-v5wp-fqgv - proc_open does not correctly escape args for cmd files
15 $batch_file_path = __DIR__ . '/ghsa-54hq-v5wp-fqgv.cmd';
28 @unlink(__DIR__ . '/ghsa-54hq-v5wp-fqgv.cmd');
H A Dproc_open_array.phpt48 $cmd = [$php, '-n', '-r', 'var_dump(getenv("ENV_1"), getenv("ENV_2"));'];
51 $proc = proc_open($cmd, $ds, $pipes);
56 $proc = proc_open($cmd, $ds, $pipes, null, $env);
70 $cmd = [$php, '-r', 'var_export(array_slice($argv, 1));', '--', ...$args];
71 $proc = proc_open($cmd, $ds, $pipes);
H A Dbug78569.phpt12 $cmd = sprintf('"findstr" "/b" "/c:// FIND ME" "%s" 2>&1', __FILE__);
13 $proc = proc_open($cmd, $descriptorspec, $pipes);
H A Dghsa-pc52-254m-w9w7_3.phpt2 GHSA-54hq-v5wp-fqgv - proc_open does not correctly escape args for cmd executing batch files
20 $proc = proc_open(["cmd.exe", "/c", $batch_file_path, "\"&notepad.exe"], $descriptorspec, $pipes);
H A Dbug69646.phpt27 $cmd = getenv('TEST_PHP_EXECUTABLE_ESCAPED') . " " . escapeshellarg($script) . " " . escapeshellar…
29 system($cmd);
/php-src/sapi/phpdbg/
H A Dphpdbg_help.c136 void summary_print(phpdbg_command_t const * const cmd) in summary_print() argument
139 spprintf(&summary, 0, "Command: **%s** Alias: **%c** **%s**\n", cmd->name, cmd->alias, cmd->tip); in summary_print()
225 phpdbg_command_t const *cmd; in PHPDBG_COMMAND() local
234 n = get_command(param->str, param->len, &cmd, phpdbg_prompt_commands); in PHPDBG_COMMAND()
237 summary_print(cmd); in PHPDBG_COMMAND()
238 pretty_print(get_help(cmd->name)); in PHPDBG_COMMAND()
243 for (cmd=phpdbg_prompt_commands; cmd->name; cmd++) { in PHPDBG_COMMAND()
244 if (!strncmp(cmd->name, param->str, param->len)) { in PHPDBG_COMMAND()
245 summary_print(cmd); in PHPDBG_COMMAND()
260 return cmd->handler(param); in PHPDBG_COMMAND()
[all …]
/php-src/sapi/cli/tests/
H A Dsapi_windows_set_ctrl_handler.phpt27 $cmd = getenv('TEST_PHP_EXECUTABLE_ESCAPED') . " -n " . $argv[0] . " 1";
30 …$proc = proc_open($cmd, $spec, $pipes, NULL, NULL, ["bypass_shell" => true, "create_process_group"…
40 $cmd = "tasklist /FI \"PID eq $child_pid\" /NH";
41 echo "Running `$cmd` to check the process indeed exists:\n";
42 echo trim(shell_exec($cmd)) . "\n";
/php-src/Zend/tests/
H A Dbug40236.phpt10 $cmd = "$php -n -d memory_limit=4M -a \"".__DIR__."\"/bug40236.inc";
11 echo `$cmd`;
/php-src/benchmark/
H A Dshared.php9 $cmd = implode(' ', array_map('escapeshellarg', $args));
13 fwrite(STDOUT, "> $cmd\n");
14 $processHandle = proc_open($cmd, $descriptorSpec, $pipes, $cwd ?? getcwd(), null);
/php-src/tests/basic/
H A Dbug71273.phpt7 …$cmd = getenv('TEST_PHP_EXECUTABLE_ESCAPED') . " -n -d html_errors=on -d extension_dir=a/�/w -d ex…
8 $out = shell_exec($cmd);
/php-src/.github/scripts/windows/
H A Dbuild_task.bat18 cmd /c phpsdk_deps --update --no-backup --branch %BRANCH% --stability %STABILITY% --deps %DEPS_DIR%…
24cmd /c phpsdk_deps --update --force --no-backup --branch %BRANCH% --stability %STABILITY% --deps %…
28 cmd /c buildconf.bat --force
41 cmd /c configure.bat ^

Completed in 36 milliseconds

1234