Home
last modified time | relevance | path

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

1234

/PHP-8.2/ext/standard/tests/general_functions/
H A Dproc_open_sockets1.phpt6 $cmd = [
17 $proc = proc_open($cmd, $spec, $pipes);
H A Dproc_open_sockets3.phpt28 $cmd = [
38 $proc = proc_open($cmd, $spec, $pipes);
H A Dproc_open_sockets2.phpt37 $cmd = [
47 $proc = proc_open($cmd, $spec, $pipes);
/PHP-8.2/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.phpt25 $cmd = '(echo "foo" ; exit 42;) 3>/dev/null; code=$?; echo $code >&3; exit $code';
29 $process = proc_open($cmd, $descriptors, $pipes);
H A Dbug60120.phpt20 $cmd = $php . ' -r "\$in = file_get_contents(\'php://stdin\'); fwrite(STDOUT, \$in); fwrite(STDERR,…
25 $process = proc_open($cmd, $descriptors, $pipes, getcwd(), array(), $options);
/PHP-8.2/ext/standard/tests/streams/
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 $callee";
43 $process = proc_open($cmd, $descriptors, $pipes);
H A Dproc_open_bug51800_right2.phpt7 $cmd = "$php -n $callee";
43 $process = proc_open($cmd, $descriptors, $pipes);
/PHP-8.2/sapi/cli/tests/
H A Dbug80092.phpt17 $cmd = [
27 $proc = proc_open($cmd, [['null'], ['pipe', 'w'], ['redirect', 1]], $pipes);
H A Dext_loading.phpt15 $cmd = [
21 $proc = proc_open($cmd, [['null'], ['pipe', 'w'], ['redirect', 1]], $pipes);
H A Dphp_cli_server.inc26 $cmd = [$php_executable, '-t', $doc_root, '-n', ...$cmd_args, '-S', 'localhost:0'];
28 $cmd[] = $router;
42 …$handle = proc_open($cmd, $descriptorspec, $pipes, $doc_root, null, array("suppress_errors" => tru…
/PHP-8.2/TSRM/
H A Dtsrm_win32.c456 char *cmd = NULL; in popen_ex() local
481 if (!cmd) { in popen_ex()
485 sprintf(cmd, "%s /s /c \"%s\"", TWG(comspec), command); in popen_ex()
486 cmdw = php_win32_cp_any_to_w(cmd); in popen_ex()
488 free(cmd); in popen_ex()
495 free(cmd); in popen_ex()
508 free(cmd); in popen_ex()
552 free(cmd); in popen_ex()
565 free(cmd); in popen_ex()
756 TSRM_API int shmctl(int key, int cmd, struct shmid_ds *buf) in shmctl() argument
[all …]
/PHP-8.2/ext/standard/
H A Dexec.h25 PHPAPI int php_exec(int type, const char *cmd, zval *array, zval *return_value);
/PHP-8.2/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-8.2/ext/standard/tests/file/windows_links/
H A Dbug48746.phpt11 $cmd = "mklink /?";
12 $ret = @exec($cmd, $output, $return_val);
H A Dbug48746_1.phpt11 $cmd = "mklink /?";
12 $ret = @exec($cmd, $output, $return_val);
/PHP-8.2/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-8.2/.github/scripts/windows/
H A Dtest.bat14 cmd /c %SDK_RUNNER% -t .github\scripts\windows\test_task.bat
/PHP-8.2/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);
/PHP-8.2/ext/openssl/tests/
H A DServerClientTestCase.inc96 $cmd = sprintf(
103 $cmd = sprintf(
112 $cmd,
/PHP-8.2/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
H A Dtest_cp874_1.phpt2 Thai cp874 cmd test
/PHP-8.2/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 67 milliseconds

1234