Home
last modified time | relevance | path

Searched refs:command (Results 1 – 25 of 109) sorted by relevance

12345

/PHP-7.1/ext/mysqlnd/
H A Dmysqlnd_commands.c100 if (command) { in mysqlnd_com_set_option_create_command()
150 if (command) { in mysqlnd_com_debug_create_command()
229 if (command) { in mysqlnd_com_init_db_create_command()
284 if (command) { in mysqlnd_com_ping_create_command()
354 if (command) { in mysqlnd_com_statistics_create_command()
429 if (command) { in mysqlnd_com_process_kill_create_command()
492 if (command) { in mysqlnd_com_refresh_create_command()
555 if (command) { in mysqlnd_com_shutdown_create_command()
610 if (command) { in mysqlnd_com_quit_create_command()
668 if (command) { in mysqlnd_com_query_create_command()
[all …]
H A Dmysqlnd_connection.c395 ret = command->run(command); in MYSQLND_METHOD()
544 ret = command->run(command); in MYSQLND_METHOD()
889 ret = command->run(command);
917 ret = command->run(command);
1066 ret = command->run(command);
1092 ret = command->run(command);
1116 ret = command->run(command);
1140 ret = command->run(command);
1166 ret = command->run(command);
1228 ret = command->run(command);
[all …]
H A Dmysqlnd_ps.c421 ret = command->run(command); in MYSQLND_METHOD()
422 command->free_command(command); in MYSQLND_METHOD()
735 ret = command->run(command); in MYSQLND_METHOD()
736 command->free_command(command); in MYSQLND_METHOD()
1069 ret = command->run(command); in mysqlnd_fetch_stmt_row_cursor()
1070 command->free_command(command); in mysqlnd_fetch_stmt_row_cursor()
1283 ret = command->run(command); in MYSQLND_METHOD()
1284 command->free_command(command); in MYSQLND_METHOD()
1394 ret = command->run(command); in MYSQLND_METHOD()
2228 ret = command->run(command); in MYSQLND_METHOD_PRIVATE()
[all …]
/PHP-7.1/ext/zip/lib/
H A Dzip_source_call.c39 _zip_source_call(zip_source_t *src, void *data, zip_uint64_t length, zip_source_cmd_t command) in _zip_source_call() argument
43 if ((src->supports & ZIP_SOURCE_MAKE_COMMAND_BITMASK(command)) == 0) { in _zip_source_call()
49 ret = src->cb.f(src->ud, data, length, command); in _zip_source_call()
52 ret = src->cb.l(src->src, src->ud, data, length, command); in _zip_source_call()
56 if (command != ZIP_SOURCE_ERROR && command != ZIP_SOURCE_SUPPORTS) { in _zip_source_call()
/PHP-7.1/sapi/phpdbg/
H A Dphpdbg_cmd.c33 if (command->parent) { in ZEND_EXTERN_MODULE_GLOBALS()
34 memcpy(&buffer[pos], command->parent->name, command->parent->name_len); in ZEND_EXTERN_MODULE_GLOBALS()
40 memcpy(&buffer[pos], command->name, command->name_len); in ZEND_EXTERN_MODULE_GLOBALS()
469 if (command) { in phpdbg_stack_verify()
500 arg = command->args; in phpdbg_stack_verify()
562 command->args, in phpdbg_stack_verify()
578 while (command && command->name && command->handler) { in phpdbg_stack_resolve()
591 if ((name->len != command->name_len && command->alias) || name->len == command->name_len) { in phpdbg_stack_resolve()
607 command++; in phpdbg_stack_resolve()
656 return phpdbg_stack_resolve(command->subs, command, top); in phpdbg_stack_resolve()
[all …]
H A DChangelog.md11 5. Fix crash when loading .phpdbginit with command line switch
22 1. Added "break delete <id>" command
23 2. Added "break opcode <opcode>" command
24 3. Added "set" command - control prompt and console colors
26 5. Added source command - load additional .phpdbginit script during session
28 7. Added info memory command
39 - shell (shell a command)
40 - register (register a function for use as a command)
43 4. Include all alias information and sub-command information in help
H A Dphpdbg_parser.y71 : command { $$ = $1; }
72 | input T_SEPARATOR command { phpdbg_stack_separate($1.top); $$ = $3; }
76 command
/PHP-7.1/ext/standard/tests/streams/
H A Dbug61019.phpt2 Bug #61019 (Out of memory on command stream_get_contents)
26 echo "External command executed\n";
42 echo "External command exit: ".$process_state['exitcode']."\n";
67 echo "Can't start external command\n";
73 External command executed
74 External command exit: 0
/PHP-7.1/TSRM/
H A Dtsrm_nw.c55 char *command = NULL, *argv[MAX_ARGS] = {'\0'}, **env = NULL; local
130 command = (char*)malloc(ptrLen + 1);
131 if (!command) {
136 strcpy (command, ptr);
145 if (command)
146 free (command);
215 if (command)
216 free (command);
H A Dtsrm_nw.h26 TSRM_API FILE* popen(const char *command, const char *type);
H A Dtsrm_win32.h102 TSRM_API FILE *popen_ex(const char *command, const char *type, const char *cwd, char *env);
103 TSRM_API FILE *popen(const char *command, const char *type);
/PHP-7.1/ext/phar/phar/
H A Dclicommand.inc13 * @brief Abstract base console command implementation
37 $command = $argv[1];
40 if (isset($this->cmds[$command]['arg'])) {
49 …self::error("Missing argument to parameter '$arg' of command '$command', check ${argv[0]} help\n");
54 self::error("Unknown parameter '${argv[$i]}' to command $command, check ${argv[0]} help\n");
64 … self::error("Missing default trailing arguments to command $command, check ${argv[0]} help\n");
73 self::error("Unexpected default arguments to command $command, check ${argv[0]} help\n");
78 $missing .= "Missing parameter '-$arg' to command $command, check ${argv[0]} help\n";
230 return "This help or help for a selected command.";
292 self::error("More than one command given.\n");
[all …]
/PHP-7.1/sapi/cli/
H A DREADME1 The CLI (command line interface) SAPI has been introduced
18 the command line (e.g. php -r 'echo md5("test");' )
19 * Other more sophisticated command line switches (see: man php)
/PHP-7.1/ext/standard/tests/file/
H A Dpopen_pclose_basic.phpt11 * Prototype: resource popen ( string command, string mode )
32 echo "-- Testing popen(): reading from a file using 'cat' command --\n";
35 $command = "cat $filename";
36 $file_handle = popen($command, "r");
77 -- Testing popen(): reading from a file using 'cat' command --
H A Dpopen_pclose_error-win32.phpt11 * Prototype: resource popen ( string command, string mode )
56 --- Done ---'abc.txt' is not recognized as an internal or external command,
/PHP-7.1/ext/standard/
H A Dexec.c473 char *command; in PHP_FUNCTION() local
476 if (zend_parse_parameters(ZEND_NUM_ARGS(), "s", &command, &command_len) == FAILURE) { in PHP_FUNCTION()
481 if (command_len != strlen(command)) { in PHP_FUNCTION()
485 RETVAL_STR(php_escape_shell_cmd(command)); in PHP_FUNCTION()
518 char *command; local
523 if (zend_parse_parameters(ZEND_NUM_ARGS(), "s", &command, &command_len) == FAILURE) {
528 if ((in=VCWD_POPEN(command, "rt"))==NULL) {
530 if ((in=VCWD_POPEN(command, "r"))==NULL) {
532 php_error_docref(NULL, E_WARNING, "Unable to execute '%s'", command);
H A Dproc_open.c233 pefree(proc->command, proc->is_persistent); in proc_open_rsrc_dtor()
326 add_assoc_string(return_value, "command", proc->command); in PHP_FUNCTION()
415 char *command, *cwd=NULL; in PHP_FUNCTION() local
461 if (zend_parse_parameters(ZEND_NUM_ARGS(), "saz/|s!a!a!", &command, in PHP_FUNCTION()
467 command = pestrdup(command, is_persistent); in PHP_FUNCTION()
494 command_len = strlen(command); in PHP_FUNCTION()
810 command_dup = strdup(command); in PHP_FUNCTION()
894 execle("/bin/sh", "sh", "-c", command, NULL, env.envarray); in PHP_FUNCTION()
896 execl("/bin/sh", "sh", "-c", command, NULL); in PHP_FUNCTION()
922 proc->command = command; in PHP_FUNCTION()
[all …]
H A Dproc_open.h46 char *command; member
/PHP-7.1/ext/standard/tests/misc/
H A Dexec_basic1.phpt2 exec, system, passthru — Basic command execution functions
10 $cmd = "echo abc\n\0command";
/PHP-7.1/ext/pgsql/tests/
H A DREADME10 If you have account and database, type "createdb test" from command prompt
12 command as the same user running the tests you ensure that the user is
/PHP-7.1/ext/standard/tests/general_functions/
H A Dproc_open02.phpt36 ["command"]=>
55 ["command"]=>
/PHP-7.1/sapi/phpdbg/tests/
H A Dbug73794.phpt2 Bug #73794 (Crash (out of memory) when using run and # command separator)
H A Dnext_001.phpt2 Test next command on function boundaries
/PHP-7.1/ext/imap/tests/
H A Dbug77020.phpt13 Warning: imap_mail(): No message string in mail command in %s on line %d
/PHP-7.1/Zend/
H A Dzend_virtual_cwd.h174 CWD_API FILE *virtual_popen(const char *command, const char *type);
282 #define VCWD_POPEN(command, type) virtual_popen(command, type) argument
331 #define VCWD_POPEN(command, type) popen(command, type) argument

Completed in 69 milliseconds

12345