Home
last modified time | relevance | path

Searched refs:cmd (Results 26 – 50 of 87) sorted by relevance

1234

/php-src/ext/standard/tests/streams/
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);
H A Dproc_open_bug51800_right.phpt13 $cmd = "$php -n " . escapeshellarg($callee);
43 $process = proc_open($cmd, $descriptors, $pipes);
H A Dproc_open_bug51800_right2.phpt7 $cmd = "$php -n " . escapeshellarg($callee);
43 $process = proc_open($cmd, $descriptors, $pipes);
/php-src/ext/standard/tests/general_functions/
H A Dproc_open_sockets3.phpt28 $cmd = [
38 $proc = proc_open($cmd, $spec, $pipes);
H A Dproc_open_sockets1.phpt10 $cmd = [
21 $proc = proc_open($cmd, $spec, $pipes);
H A Dproc_open_sockets2.phpt37 $cmd = [
47 $proc = proc_open($cmd, $spec, $pipes);
/php-src/ext/standard/tests/file/
H A Dbug72035.phpt20 $cmd = "$cgi -n -C $fl";
24 $proc = proc_open($cmd, $desc, $pipes, getcwd(), array());
H A Dbug69442.phpt26 $cmd = '(echo "foo" ; exit 42;) 3>/dev/null; code=$?; echo $code >&3; exit $code';
30 $process = proc_open($cmd, $descriptors, $pipes);
H A Dbug60120.phpt17 $cmd = $php . ' -r "\$in = file_get_contents(\'php://stdin\'); fwrite(STDOUT, \$in); fwrite(STDERR,…
22 $process = proc_open($cmd, $descriptors, $pipes, getcwd(), array(), $options);
/php-src/sapi/cli/tests/
H A Dbug80092.phpt17 $cmd = [
27 $proc = proc_open($cmd, [['null'], ['pipe', 'w'], ['redirect', 1]], $pipes);
H A Dext_loading.phpt14 $cmd = [
20 $proc = proc_open($cmd, [['null'], ['pipe', 'w'], ['redirect', 1]], $pipes);
/php-src/TSRM/
H A Dtsrm_win32.c456 char *cmd = NULL; in popen_ex() local
481 cmd = malloc(cmd_buffer_size); in popen_ex()
482 if (!cmd) { in popen_ex()
487 cmdw = php_win32_cp_any_to_w(cmd); in popen_ex()
489 free(cmd); in popen_ex()
496 free(cmd); in popen_ex()
509 free(cmd); in popen_ex()
553 free(cmd); in popen_ex()
566 free(cmd); in popen_ex()
758 TSRM_API int shmctl(int key, int cmd, struct shmid_ds *buf) in shmctl() argument
[all …]
/php-src/ext/standard/
H A Dexec.h25 PHPAPI int php_exec(int type, const char *cmd, zval *array, zval *return_value);
/php-src/ext/ftp/
H A Dftp.h121 int ftp_exec(ftpbuf_t *ftp, const char *cmd, const size_t cmd_len);
124 void ftp_raw(ftpbuf_t *ftp, const char *cmd, const size_t cmd_len, zval *return_value);
208 int ftp_site(ftpbuf_t *ftp, const char *cmd, const size_t cmd_len);
/php-src/ext/opcache/tests/
H A Dphp_cli_server.inc14 $cmd = [$php_executable, '-t', $doc_root, '-n', ...$ini_array, '-S', PHP_CLI_SERVER_ADDRESS];
20 …$handle = proc_open($cmd, $descriptorspec, $pipes, $doc_root, null, array("suppress_errors" => tru…
/php-src/ext/standard/tests/file/windows_links/
H A Dbug48746.phpt11 $cmd = "mklink /?";
12 $ret = @exec($cmd, $output, $return_val);
/php-src/.github/scripts/windows/
H A Dtest.bat12 cmd /c %SDK_RUNNER% -t .github\scripts\windows\test_task.bat
/php-src/sapi/cgi/tests/
H A D011.phpt17 $cmd = escapeshellcmd($GLOBALS['php']);
18 $cmd .= ' -n -dreport_zend_debug=0 -dhtml_errors=0 ' . escapeshellarg($GLOBALS['f']);
22 passthru($cmd);
H A D012.phpt11 function run_and_output($cmd) {
13 $cmd .= " 2>/dev/null";
15 exec($cmd, $output, $exit_code);
/php-src/tests/basic/
H A DGHSA-9pqp-7h25-4f32.phpt20 $cmd = [
54 $handle = proc_open($cmd, $spec, $pipes, getcwd(), $env);
/php-src/ext/openssl/tests/
H A DServerClientTestCase.inc96 $cmd = sprintf(
103 $cmd = sprintf(
113 $cmd,
/php-src/ext/standard/tests/file/windows_mb_path/
H A Dtest_cp874_to_utf8_1.phpt2 Thai UTF-8 cmd test
H A Dtest_kartuli_utf8_3.phpt2 Kartuli UTF-8 cmd test
/php-src/ext/pdo_firebird/tests/
H A Dpayload_server.inc4 $cmd = [getenv("TEST_PHP_EXECUTABLE"), "-n", __DIR__ . "/payload_server.php", $payloadFile];
10 $proc = proc_open($cmd, $descriptorspec, $pipes);

Completed in 39 milliseconds

1234