Home
last modified time | relevance | path

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

12345

/php-src/ext/standard/tests/strings/
H A Dsetlocale_basic2.phpt18 // start the buffering of next command to internal output buffer
21 // run the command 'locale -a' to fetch all locales available in the system
/php-src/ext/mysqlnd/
H A Dmysqlnd_driver.c146 data->command = mysqlnd_command_get_methods(); in MYSQLND_METHOD()
148 …if (!data->protocol_frame_codec || !data->vio || !data->payload_decoder_factory || !data->command)… in MYSQLND_METHOD()
H A Dmysqlnd_wireprotocol.c615 ret = conn->command->change_user(conn, payload, silent); in php_mysqlnd_auth_write()
968 vio->data->m.consume_uneaten_data(vio, packet->command); in php_mysqlnd_cmd_write()
974 int1store(buffer + MYSQLND_HEADER_SIZE, packet->command); in php_mysqlnd_cmd_write()
985 int1store(p, packet->command); in php_mysqlnd_cmd_write()
2386 const enum php_mysqlnd_server_command command, in MYSQLND_METHOD()
2401 DBG_INF_FMT("command=%s silent=%u", mysqlnd_command_to_text[command], silent); in MYSQLND_METHOD()
2424 cmd_packet.command = command; in MYSQLND_METHOD()
2430 MYSQLND_INC_CONN_STATISTIC(stats, STAT_COM_QUIT + command - 1 /* because of COM_SLEEP */ ); in MYSQLND_METHOD()
2434 DBG_ERR_FMT("Error while sending %s packet", mysqlnd_command_to_text[command]); in MYSQLND_METHOD()
2550 const enum php_mysqlnd_server_command command, in MYSQLND_METHOD()
[all …]
H A Dmysqlnd_wireprotocol.h150 enum php_mysqlnd_server_command command; member
H A Dmysqlnd_structs.h485 …t)(MYSQLND_CONN_DATA * const conn, const enum php_mysqlnd_server_command command, const zend_uchar…
486 …type ok_packet, const bool silent, const enum php_mysqlnd_server_command command, const bool ignor…
951 MYSQLND_CLASS_METHODS_TYPE(mysqlnd_command) * command;
1005 const enum php_mysqlnd_server_command command,
1032 const enum php_mysqlnd_server_command command,
/php-src/ext/standard/
H A Dproc_open.c322 zend_string_release_ex(proc->command, false); in proc_open_rsrc_dtor()
408 add_assoc_str(return_value, "command", zend_string_copy(proc->command)); in PHP_FUNCTION()
728 zend_string *command = NULL; in get_command_from_array() local
738 if (command != NULL) { in get_command_from_array()
739 zend_string_release_ex(command, false); in get_command_from_array()
745 command = zend_string_copy(arg_str); in get_command_from_array()
753 return command; in get_command_from_array()
1412 proc->command = zend_string_copy(command_str); in PHP_FUNCTION()
H A Dbasic_functions.stub.php2706 function exec(string $command, &$output = null, &$result_code = null): string|false {}
2712 function system(string $command, &$result_code = null): string|false {}
2715 function passthru(string $command, &$result_code = null): false|null {}
2718 function escapeshellcmd(string $command): string {}
2724 function shell_exec(string $command): string|false|null {}
2751 function popen(string $command, string $mode) {}
3347 function proc_open(array|string $command, array $descriptor_spec, &$pipes, ?string $cwd = null, ?ar…
/php-src/sapi/cli/tests/
H A Dcli_process_title_unix.phpt27 $ps_process_title_field = "command";
/php-src/ext/posix/
H A Dconfig.m446 AS_IF([command -v ldd >/dev/null && ldd --version 2>&1 | grep -q "^musl"],[],
/php-src/TSRM/
H A Dtsrm_win32.c439 TSRM_API FILE *popen(const char *command, const char *type) in popen() argument
442 return popen_ex(command, type, NULL, NULL); in popen()
445 TSRM_API FILE *popen_ex(const char *command, const char *type, const char *cwd, const char *env) in popen_ex() argument
480 size_t cmd_buffer_size = strlen(command) + strlen(TWG(comspec)) + sizeof(" /s /c ") + 2; in popen_ex()
486 snprintf(cmd, cmd_buffer_size, "%s /s /c \"%s\"", TWG(comspec), command); in popen_ex()
/php-src/ext/ftp/tests/
H A Dserver.inc68 fputs($s, "500 Syntax error, command unrecognized.\r\n");
107 fputs($s, "500 Syntax error, command unrecognized.\r\n");
123 fputs($s, "500 Syntax error, command unrecognized.\r\n");
160 fputs($s, "250 CDUP command successful.\r\n");
260 fputs($s, "250 CWD command successful.\r\n");
534 fputs($s, "500 Syntax error, command unrecognized.\r\n");
/php-src/sapi/phpdbg/
H A Dphpdbg_cmd.h138 PHPDBG_API int phpdbg_stack_verify(const phpdbg_command_t *command, phpdbg_param_t **stack);
/php-src/ext/openssl/tests/
H A Dstream_server_reneg_limit.phpt21 * command is the only feasible way to test renegotiation limiting functionality. It's not an ideal
/php-src/ext/mysqli/tests/
H A Dmysqli_stmt_fetch.phpt84 [014] [%d] Commands out of sync; you can't run this command now
H A Dmysqli_report.phpt325 Warning: mysqli_autocommit(): (%s/%d): Commands out of sync; you can't run this command now in %s o…
327 Warning: mysqli_commit(): (%s/%d): Commands out of sync; you can't run this command now in %s on li…
329 Warning: mysqli_rollback(): (%s/%d): Commands out of sync; you can't run this command now in %s on …
331 Warning: mysqli_stmt_prepare(): (%s/%d): Commands out of sync; you can't run this command now in %s…
H A Dmysqli_multi_query.phpt118 [009] [2014] Commands out of sync; you can't run this command now
H A Dmysqli_stmt_send_long_data_packet_size_mysqlnd.phpt65 Warning: mysqli_stmt_send_long_data(): Skipped %d bytes. Last command STMT_SEND_LONG_DATA hasn't co…
H A Dmysqli_change_user_get_lock.phpt39 This command resets the state as if one had done a new connect. (See Section 25.2.13, “Controlling …
/php-src/ext/standard/tests/mail/
H A Dmail_util.inc40 public function send(string $tag, string $command): void
42 fputs($this->fp, "{$tag} {$command}\r\n");
/php-src/ext/ftp/
H A Dftp_arginfo.h39 ZEND_ARG_TYPE_INFO(0, command, IS_STRING, 0)
44 ZEND_ARG_TYPE_INFO(0, command, IS_STRING, 0)
/php-src/ext/pdo_mysql/
H A Dmysql_driver.c356 zend_string *command; in mysql_handle_begin() local
361 command = ZSTR_INIT_LITERAL("START TRANSACTION", 0); in mysql_handle_begin()
362 return_value = mysql_handle_doer(dbh, command); in mysql_handle_begin()
363 zend_string_release_ex(command, 0); in mysql_handle_begin()
/php-src/ext/phar/phar/
H A Dpharcommand.inc17 * commands. It will be used from command line/console
21 * @brief Phar console command implementation
122 .'pear command. When using \'0\' the command does not error out when the '
839 * @return string The description of the command extra to a directory.
949 * The cli command argument for deleting.
1074 * Get the command stub infos.
1120 * @return string A description of the command.
1455 * @return array The arguments for info command.
1563 * @return array The arguments for version command.
/php-src/sapi/fpm/tests/
H A Dtester.inc353 * Skip test if supplied shell command fails.
355 * @param string $command
358 …static public function skipIfShellCommandFails(string $command, ?string $expectedPartOfOutput = nu…
360 $result = exec("$command 2>&1", $output, $code);
362 die("skip command '$command' faieled with code $code");
373 die("skip command '$command' did not contain output '$expectedPartOfOutput'");
452 $this->trace('Testing config using command', $cmd, true);
550 $this->trace('Starting FPM using command:', $cmd, true);
1130 $this->trace('Sending signal using command', $cmd, true);
2206 * @param bool $isCommand Whether message is a command array.
/php-src/ext/standard/tests/file/windows_mb_path/
H A Dutil.inc36 $cmd = "powershell -command \"Get-Item -Path '$path' | Format-Table -HideTableHeaders Name\"";
/php-src/sapi/fpm/
H A Dphp-fpm.service.in3 # the best way is to use the "systemctl edit" command.

Completed in 103 milliseconds

12345