Home
last modified time | relevance | path

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

123

/PHP-7.0/ext/standard/
H A Dexec.c113 fp = VCWD_POPEN(cmd, "r"); in php_exec()
207 char *cmd; in php_exec_ex() local
284 zend_string *cmd; in php_escape_shell_cmd() local
364 ZSTR_VAL(cmd)[y] = '\0'; in php_escape_shell_cmd() local
375 cmd = zend_string_truncate(cmd, y, 0); in php_escape_shell_cmd()
378 ZSTR_LEN(cmd) = y; in php_escape_shell_cmd()
380 return cmd; in php_escape_shell_cmd()
390 zend_string *cmd; in php_escape_shell_arg() local
462 cmd = zend_string_truncate(cmd, y, 0); in php_escape_shell_arg()
464 ZSTR_LEN(cmd) = y; in php_escape_shell_arg()
[all …]
/PHP-7.0/ext/standard/tests/file/
H A Dbug22414.phpt20 $cmd = $php . $args . ' -r \"readfile(@getenv(\'TEST_PHP_EXECUTABLE\')); \"';
21 $cmd = $php . $args . ' -r \' passthru("'.$cmd.'"); \' > '.$tmpfile ;
23 $cmd = $php . $args . ' -r \"readfile(@getenv(\\\\\\"TEST_PHP_EXECUTABLE\\\\\\")); \"';
24 $cmd = $php . $args . ' -r " passthru(\''.$cmd.'\');" > '.$tmpfile ;
26 exec($cmd);
H A Dbug72035.phpt21 $cmd = "$cgi -n -C $fl";
25 $proc = proc_open($cmd, $desc, $pipes, getcwd(), array());
/PHP-7.0/sapi/apache2handler/
H A Dapache_config.c68 e.value = apr_pstrdup(cmd->pool, value); in real_value_hnd()
71 e.htaccess = ((cmd->override & (RSRC_CONF|ACCESS_CONF)) == 0); in real_value_hnd()
77 static const char *php_apache_value_handler(cmd_parms *cmd, void *dummy, const char *name, const ch… in php_apache_value_handler() argument
79 return real_value_hnd(cmd, dummy, name, value, PHP_INI_PERDIR); in php_apache_value_handler()
84 return real_value_hnd(cmd, dummy, name, value, PHP_INI_SYSTEM); in php_apache_admin_value_handler()
98 return real_value_hnd(cmd, dummy, arg1, bool_val, status); in real_flag_hnd()
101 static const char *php_apache_flag_handler(cmd_parms *cmd, void *dummy, const char *name, const cha… in php_apache_flag_handler() argument
103 return real_flag_hnd(cmd, dummy, name, value, PHP_INI_PERDIR); in php_apache_flag_handler()
108 return real_flag_hnd(cmd, dummy, name, value, PHP_INI_SYSTEM); in php_apache_admin_flag_handler()
111 static const char *php_apache_phpini_set(cmd_parms *cmd, void *mconfig, const char *arg) in php_apache_phpini_set() argument
[all …]
/PHP-7.0/ext/standard/tests/file/windows_acls/
H A Dcommon.inc72 exec($cmd);
81 exec($cmd);
83 exec($cmd);
96 exec($cmd);
103 $cmd = $icacls . ' ' . $path_escaped . ' /remove:d ' . $user;
104 exec($cmd);
106 exec($cmd);
121 exec($cmd);
123 exec($cmd);
126 $cmd .= ':' . '(' . implode($perm_entry, ',') . ')';
[all …]
/PHP-7.0/ext/curl/tests/
H A Dserver.inc23 $cmd = "{$php_executable} -t {$doc_root} -n -S " . PHP_CURL_SERVER_ADDRESS;
24 $cmd .= " {$router}";
25 …$handle = proc_open(addslashes($cmd), $descriptorspec, $pipes, $doc_root, NULL, array("bypass_shel…
27 $cmd = "exec {$php_executable} -t {$doc_root} -n -S " . PHP_CURL_SERVER_ADDRESS;
28 $cmd .= " {$router}";
29 $cmd .= " 2>/dev/null";
31 $handle = proc_open($cmd, $descriptorspec, $pipes, $doc_root);
/PHP-7.0/build/
H A Dmkdep.awk29 cmd=$4
34 cmd=cmd " " $i
57 cmdx=cmd " " filenames[i]
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-7.0/ext/zip/lib/
H A Dzip_source_supports.c59 int cmd = va_arg(ap, int); in zip_source_make_command_bitmap() local
60 if (cmd < 0) { in zip_source_make_command_bitmap()
63 bitmap |= ZIP_SOURCE_MAKE_COMMAND_BITMASK(cmd); in zip_source_make_command_bitmap()
/PHP-7.0/sapi/cli/tests/
H A Dphp_cli_server.inc21 $cmd = "{$php_executable} -t {$doc_root} -n {$cmd_args} -S " . PHP_CLI_SERVER_ADDRESS;
23 $cmd .= " {$router}";
26 …$handle = proc_open(addslashes($cmd), $descriptorspec, $pipes, $doc_root, NULL, array("bypass_shel…
28 $cmd = "exec {$php_executable} -t {$doc_root} -n {$cmd_args} -S " . PHP_CLI_SERVER_ADDRESS;
30 $cmd .= " {$router}";
32 $cmd .= " 2>/dev/null";
34 $handle = proc_open($cmd, $descriptorspec, $pipes, $doc_root);
/PHP-7.0/ext/standard/tests/misc/
H A Dexec_basic1.phpt10 $cmd = "echo abc\n\0command";
11 var_dump(exec($cmd, $output));
13 var_dump(system($cmd));
14 var_dump(passthru($cmd));
/PHP-7.0/ext/sqlite3/tests/
H A Dsqlite3_15_open_error-win.phpt18 $cmd = $icacls . ' ' . $unreadable . ' /inheritance:r /deny ' . $user . ':(F,M,R,RX,W)';
19 exec($cmd);
28 $cmd = $icacls . ' ' . $unreadable . ' /grant ' . $user . ':(F,M,R,RX,W)';
29 exec($cmd);
/PHP-7.0/sapi/phpdbg/
H A Dphpdbg_help.c145 void summary_print(phpdbg_command_t const * const cmd) in summary_print() argument
148 spprintf(&summary, 0, "Command: **%s** Alias: **%c** **%s**\n", cmd->name, cmd->alias, cmd->tip); in summary_print()
234 phpdbg_command_t const *cmd; in PHPDBG_COMMAND() local
243 n = get_command(param->str, param->len, &cmd, phpdbg_prompt_commands); in PHPDBG_COMMAND()
246 summary_print(cmd); in PHPDBG_COMMAND()
247 pretty_print(get_help(cmd->name)); in PHPDBG_COMMAND()
252 for (cmd=phpdbg_prompt_commands; cmd->name; cmd++) { in PHPDBG_COMMAND()
253 if (!strncmp(cmd->name, param->str, param->len)) { in PHPDBG_COMMAND()
254 summary_print(cmd); in PHPDBG_COMMAND()
269 return cmd->handler(param); in PHPDBG_COMMAND()
[all …]
/PHP-7.0/ext/opcache/tests/
H A Dphp_cli_server.inc17 $cmd = "{$php_executable} -t {$doc_root} $ini -S " . PHP_CLI_SERVER_ADDRESS;
18 …$handle = proc_open(addslashes($cmd), $descriptorspec, $pipes, $doc_root, NULL, array("bypass_shel…
20 $cmd = "exec {$php_executable} -t {$doc_root} $ini -S " . PHP_CLI_SERVER_ADDRESS . " 2>/dev/null";
21 $handle = proc_open($cmd, $descriptorspec, $pipes, $doc_root);
/PHP-7.0/Zend/tests/
H A Dbug40236.phpt11 $cmd = "\"$php\" -n -d memory_limit=4M -a \"".dirname(__FILE__)."\"/bug40236.inc";
12 echo `$cmd`;
/PHP-7.0/ext/standard/tests/streams/
H A Dstream_get_meta_data_process_basic.phpt7 $cmd = "echo here is some output";
9 $handle = popen($cmd, $mode);
H A Dproc_open_bug60120.phpt8 …$cmd = PHP_BINARY . ' -n -r "fwrite(STDOUT, $in = file_get_contents(\'php://stdin\')); fwrite(STDE…
10 …$cmd = PHP_BINARY . ' -n -r \'fwrite(STDOUT, $in = file_get_contents("php://stdin")); fwrite(STDER…
17 $process = proc_open($cmd, $descriptors, $pipes, getcwd(), array(), $options);
H A Dproc_open_bug64438.phpt9 …$cmd = PHP_BINARY . ' -n -r "fwrite(STDOUT, $in = file_get_contents(\'php://stdin\')); fwrite(STDE…
11 …$cmd = PHP_BINARY . ' -n -r \'fwrite(STDOUT, $in = file_get_contents("php://stdin")); fwrite(STDER…
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);
H A Dbug60602.phpt14 $cmd = (substr(PHP_OS, 0, 3) == 'WIN') ? 'dir' : 'ls';
15 $p = proc_open($cmd, $descs, $pipes, '.', $environment);
/PHP-7.0/tests/basic/
H A Dbug71273.phpt13 …$cmd = getenv('TEST_PHP_EXECUTABLE') . " -n -d html_errors=on -d extension_dir=a/�/w -d extension=…
14 $out = shell_exec($cmd);
/PHP-7.0/appveyor/
H A Dbuild_task.bat26 cmd /c phpsdk_deps --update --no-backup --branch %BRANCH% --stability %STABILITY% --deps %DEPS_DIR%
32cmd /c phpsdk_deps --update --force --no-backup --branch %BRANCH% --stability %STABILITY% --deps %…
36 cmd /c buildconf.bat --force
44 cmd /c configure.bat ^
/PHP-7.0/ext/standard/tests/general_functions/
H A Dbug69646.phpt27 $cmd = PHP_BINARY . " " . $script . " " . escapeshellarg($a) . " " . escapeshellarg($b);
29 system($cmd);
/PHP-7.0/ext/openssl/tests/
H A DServerClientTestCase.inc53 …$cmd = sprintf('%s %s "%s" %s', PHP_BINARY, $ini ? "-n -c $ini" : "", __FILE__, WORKER_ARGV_VALUE);
55 $cmd = sprintf('%s "%s" %s', PHP_BINARY, __FILE__, WORKER_ARGV_VALUE);
57 $this->workerHandle = proc_open($cmd, [['pipe', 'r'], ['pipe', 'w'], STDERR], $pipes);
/PHP-7.0/ext/ftp/
H A Dftp.h124 int ftp_exec(ftpbuf_t *ftp, const char *cmd);
127 void ftp_raw(ftpbuf_t *ftp, const char *cmd, zval *return_value);
194 int ftp_site(ftpbuf_t *ftp, const char *cmd);

Completed in 31 milliseconds

123