Home
last modified time | relevance | path

Searched refs:cmd (Results 51 – 75 of 75) sorted by relevance

123

/PHP-7.4/ext/openssl/tests/
H A Dstream_server_reneg_limit.phpt73 $cmd = 'openssl s_client -connect 127.0.0.1:64321';
75 $process = proc_open($cmd, $descriptorSpec, $pipes);
/PHP-7.4/build/
H A Dltmain.sh2696 $show "$cmd"
4342 $show "$cmd"
4379 $show "$cmd"
5643 $show "$cmd"
6071 eval cmd=\"$cmd\"
6072 $show "$cmd"
6292 eval cmd=\"$cmd\"
6293 $show "$cmd"
6619 eval cmd=\"$cmd\"
6620 $show "$cmd"
[all …]
H A Dphp.m448 cmd="echo $ac_n \"\$$1$unique$ac_c\""
49 if test -n "$unique" && test "`eval $cmd`" = "" ; then
314 cmd='$CC $1 -c conftest.c'
315 if eval $cmd 2>&1 | $EGREP -e $1 >/dev/null ; then
H A Dlibtool.m4450 for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do
452 if (echo_test_string=`eval $cmd`) 2>/dev/null &&
453 echo_test_string=`eval $cmd` &&
526 for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do
527 if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null
531 prev="$cmd"
/PHP-7.4/ext/ftp/
H A Dftp.c76 const char *cmd,
486 ftp_exec(ftpbuf_t *ftp, const char *cmd, const size_t cmd_len) in ftp_exec() argument
491 if (!ftp_putcmd(ftp, "SITE EXEC", sizeof("SITE EXEC")-1, cmd, cmd_len)) { in ftp_exec()
507 if (ftp == NULL || cmd == NULL) { in ftp_raw()
510 if (!ftp_putcmd(ftp, cmd, cmd_len, NULL, (size_t) 0)) { in ftp_raw()
1254 ftp_site(ftpbuf_t *ftp, const char *cmd, const size_t cmd_len) in ftp_site() argument
1259 if (!ftp_putcmd(ftp, "SITE", sizeof("SITE")-1, cmd, cmd_len)) { in ftp_site()
1280 if (strpbrk(cmd, "\r\n")) { in ftp_putcmd()
1292 size = slprintf(ftp->outbuf, sizeof(ftp->outbuf), "%s %s\r\n", cmd, args); in ftp_putcmd()
1298 size = slprintf(ftp->outbuf, sizeof(ftp->outbuf), "%s\r\n", cmd); in ftp_putcmd()
[all …]
H A Dphp_ftp.c230 ZEND_ARG_INFO(0, cmd)
556 char *cmd; in PHP_FUNCTION() local
559 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs", &z_ftp, &cmd, &cmd_len) == FAILURE) { in PHP_FUNCTION()
568 if (!ftp_exec(ftp, cmd, cmd_len)) { in PHP_FUNCTION()
585 char *cmd; in PHP_FUNCTION() local
588 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs", &z_ftp, &cmd, &cmd_len) == FAILURE) { in PHP_FUNCTION()
597 ftp_raw(ftp, cmd, cmd_len, return_value); in PHP_FUNCTION()
1523 char *cmd; in PHP_FUNCTION() local
1526 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs", &z_ftp, &cmd, &cmd_len) == FAILURE) { in PHP_FUNCTION()
1535 if (!ftp_site(ftp, cmd, cmd_len)) { in PHP_FUNCTION()
/PHP-7.4/sapi/cli/tests/
H A Dcli_process_title_windows.phpt39 …$loaded_title = shell_exec("PowerShell -NoProfile \"get-process cmd*,powershell* | Select-Object m…
48 // the run-tests.php is executed forks a php.exe, which forks a cmd.exe, which then forks
/PHP-7.4/ext/standard/tests/file/windows_mb_path/
H A Dutil.inc36 $cmd = "powershell -command \"Get-Item -Path '$path' | Format-Table -HideTableHeaders Name\"";
37 $out = trim(shell_exec($cmd));
/PHP-7.4/TSRM/
H A Dtsrm_win32.h110 TSRM_API int shmctl(int key, int cmd, struct shmid_ds *buf);
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_prompt.c220 size_t cmd_len = strlen(cmd); in phpdbg_line_init()
224 while (cmd_len > 0L && isspace(cmd[cmd_len-1])) { in phpdbg_line_init()
228 cmd[cmd_len] = '\0'; in phpdbg_line_init()
230 if (*cmd && cmd_len > 0L && cmd[0] != '#') { in phpdbg_line_init()
232 if (memcmp(cmd, "<:", sizeof("<:")-1) == SUCCESS) { in phpdbg_line_init()
236 if (memcmp(cmd, ":>", sizeof(":>")-1) == SUCCESS) { in phpdbg_line_init()
255 memcpy(&state->code[state->code_len], cmd, cmd_len); in phpdbg_line_init()
263 char *input = phpdbg_read_input(cmd); in phpdbg_line_init()
322 char cmd[PHPDBG_MAX_CMD]; in phpdbg_try_file_init() local
327 while (fgets(cmd, PHPDBG_MAX_CMD, fp) != NULL) { in phpdbg_try_file_init()
[all …]
H A Dphpdbg.c1931 phpdbg_param_t cmd; in main() local
1932 cmd.str = read_from_stdin; in main()
1933 cmd.len = strlen(read_from_stdin); in main()
1934 PHPDBG_COMMAND_HANDLER(stdin)(&cmd); in main()
/PHP-7.4/appveyor/
H A Dbuild.bat41 cmd /c %SDK_RUNNER% -t %APPVEYOR_BUILD_FOLDER%\appveyor\build_task.bat
/PHP-7.4/ext/readline/
H A Dreadline_cli.c631 zend_string *cmd; in readline_shell_run() local
633 cmd = zend_string_init(&line[1], param - &line[1] - 1, 0); in readline_shell_run()
635 … zend_alter_ini_entry_chars_ex(cmd, param, strlen(param), PHP_INI_USER, PHP_INI_STAGE_RUNTIME, 0); in readline_shell_run()
636 zend_string_release_ex(cmd, 0); in readline_shell_run()
/PHP-7.4/
H A Drun-tests.php2344 $cmd = "$php $pass_options $ini_settings -f \"$test_file\"$cmdRedirect < \"$tmp_post\"";
2378 $cmd = "$php $pass_options $ini_settings -f \"$test_file\"$cmdRedirect < \"$tmp_post\"";
2395 $cmd = "$php $pass_options $ini_settings -f \"$test_file\"$cmdRedirect < \"$tmp_post\"";
2410 $cmd = "$php $pass_options $ini_settings -f \"$test_file\"$cmdRedirect < \"$tmp_post\"";
2423 $cmd = "$php $pass_options $ini_settings -f \"$test_file\"$cmdRedirect < \"$tmp_post\"";
2431 $cmd = "$php $pass_options $ini_settings -f \"$test_file\" $args$cmdRedirect";
2438 … $cmd = $valgrind->wrapCommand($cmd, $memcheck_filename, strpos($test_file, "pcre") !== false);
2450 COMMAND $cmd
2734 {$cmd}
3643 public function wrapCommand($cmd, $memcheck_filename, $check_all) argument
[all …]
H A DUPGRADING376 proc_open($cmd, [1 => ['pipe', 'w'], 2 => ['redirect', 1]], $pipes);
378 proc_open($cmd, [1 => ['pipe', 'w'], 2 => ['null']], $pipes);
H A DNEWS2193 . Fixed bug #77767 (phpdbg break cmd aliases listed in help do not match
/PHP-7.4/win32/build/
H A Dmkdist.php76 $cmd = "$GLOBALS[build_dir]\\deplister.exe \"$module\" \"$GLOBALS[build_dir]\"";
77 $proc = proc_open($cmd,
/PHP-7.4/sapi/fpm/tests/
H A Dtester.inc348 $cmd = self::findExecutable() . ' -t -y ' . $configFile . ' 2>&1';
349 exec($cmd, $output, $code);
368 $cmd = [self::findExecutable(), '-F', '-O', '-y', $configFile];
370 $cmd[] = '--allow-to-run-as-root';
372 $cmd = array_merge($cmd, $extraArgs);
374 $this->masterProcess = proc_open($cmd, $desc, $pipes);
/PHP-7.4/ext/pdo_dblib/
H A Ddblib_driver.c200 static int pdo_dblib_transaction_cmd(const char *cmd, pdo_dbh_t *dbh) in pdo_dblib_transaction_cmd() argument
204 if (FAIL == dbcmd(H->link, cmd)) { in pdo_dblib_transaction_cmd()
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_vio.c435 …OD(mysqlnd_vio, consume_uneaten_data)(MYSQLND_VIO * const net, enum php_mysqlnd_server_command cmd) in MYSQLND_METHOD()
477 net->last_command = cmd; in MYSQLND_METHOD()
H A Dmysqlnd_structs.h387 …c_mysqlnd_vio__consume_uneaten_data)(MYSQLND_VIO * const vio, enum php_mysqlnd_server_command cmd);
/PHP-7.4/ext/pdo_pgsql/
H A Dpgsql_driver.c492 static int pdo_pgsql_transaction_cmd(const char *cmd, pdo_dbh_t *dbh) in pdo_pgsql_transaction_cmd() argument
498 res = PQexec(H->server, cmd); in pdo_pgsql_transaction_cmd()
/PHP-7.4/ext/standard/
H A Dbasic_functions.c1014 ZEND_ARG_INFO(0, cmd)
/PHP-7.4/ext/fileinfo/tests/
H A Dmagic私はガラスを食べられます19201 0 string/t #\ Magic magic text file for file(1) cmd
19202 0 lelong 0xF11E041C magic binary file for file(1) cmd
19204 0 belong 0xF11E041C magic binary file for file(1) cmd
H A Dmagic19201 0 string/t #\ Magic magic text file for file(1) cmd
19202 0 lelong 0xF11E041C magic binary file for file(1) cmd
19204 0 belong 0xF11E041C magic binary file for file(1) cmd

Completed in 256 milliseconds

123