| /PHP_TRUNK/ext/ereg/regex/ |
| H A D | regex.mak | 10 !MESSAGE by defining the macro CFG on the command line. For example:
|
| /PHP_TRUNK/ext/phar/phar/ |
| H A D | clicommand.inc | 13 * @brief Abstract base console command implementation 33 self::error("No command given, check ${argv[0]} help\n"); 35 self::error("Unknown command '${argv[1]}', check ${argv[0]} help\n"); 37 $command = $argv[1]; 40 if (isset($this->cmds[$command]['arg'])) { 41 $this->args = call_user_func(array($this, $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, chec [all...] |
| H A D | pharcommand.inc | 17 * 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 ' 827 * @return string The description of the command extra to a directory. 937 * The cli command argument for deleting. 1062 * Get the command stub infos. 1108 * @return string A description of the command. 1443 * @return array The arguments for info command. 1551 * @return array The arguments for version command [all...] |
| /PHP_TRUNK/ |
| H A D | ltmain.sh | 247 # if one wasn't chosen via the "--tag" command line option. 249 # command doesn't match the default compiler. 264 # Blanks in the command may have been stripped by the calling shell, 286 # The compiler in the base compile command matches 296 # was found and let the user know that the "--tag" command 429 # Parse our command line options once, thoroughly. 594 # If this variable is set in any of the actions, the command in it 659 # Get the compilation command and the source file. 684 # Accept any command-line options. 849 $echo "$modename: you must specify a compilation command" [all...] |
| H A D | server-tests.php | 168 function execute($command, $args=NULL, $input=NULL, $cwd=NULL, $env=NULL) 175 $commandline = "$command $args"; 715 // configure test paths from config file or command line 1188 // ini setting on the command line. be sure the executables 1371 /* not cgi spec to put query string on command line,
|
| /PHP_TRUNK/win32/build/ |
| H A D | confutils.js | 126 /* execute a command and return the output as a string */
134 //STDOUT.WriteLine("command " + command_line);
143 var command = 'cmd /c ""' + EXE;
145 command = command + '" -v"';
147 var version = execute(command + '" 2>&1"');
|
| /PHP_TRUNK/TSRM/ |
| H A D | tsrm_nw.c | 55 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 D | tsrm_nw.h | 26 TSRM_API FILE* popen(const char *command, const char *type);
|
| H A D | tsrm_virtual_cwd.c | 1829 CWD_API FILE *virtual_popen(const char *command, const char *type TSRMLS_DC) /* {{{ */ argument 1831 return popen_ex(command, type, CWDG(cwd).cwd, NULL TSRMLS_CC); 1838 CWD_API FILE *virtual_popen(const char *command, const char *type TSRMLS_DC) /* {{{ */ argument 1854 retval = popen(command, type); 1865 CWD_API FILE *virtual_popen(const char *command, const char *type TSRMLS_DC) /* {{{ */ argument 1873 command_length = strlen(command); 1916 memcpy(ptr, command, command_length+1);
|
| H A D | tsrm_virtual_cwd.h | 171 CWD_API FILE *virtual_popen(const char *command, const char *type TSRMLS_DC); 275 #define VCWD_POPEN(command, type) virtual_popen(command, type TSRMLS_CC) 311 #define VCWD_POPEN(command, type) popen(command, type)
|
| H A D | tsrm_win32.c | 49 globals->comspec = _strdup((GetVersion()<0x80000000)?"cmd.exe":"command.com"); 450 TSRM_API FILE *popen(const char *command, const char *type) argument 454 return popen_ex(command, type, NULL, NULL TSRMLS_CC); 457 TSRM_API FILE *popen_ex(const char *command, const char *type, const char *cwd, char *env TSRMLS_DC) argument 535 cmd = (char*)malloc(strlen(command)+strlen(TWG(comspec))+sizeof(" /c ")+2); 540 sprintf(cmd, "%s /c \"%s\"", TWG(comspec), command);
|
| H A D | tsrm_win32.h | 98 TSRM_API FILE *popen_ex(const char *command, const char *type, const char *cwd, char *env TSRMLS_DC); 99 TSRM_API FILE *popen(const char *command, const char *type);
|
| /PHP_TRUNK/ext/ftp/ |
| H A D | php_ftp.c | 83 ZEND_ARG_INFO(0, command) 88 ZEND_ARG_INFO(0, command) 505 /* {{{ proto bool ftp_exec(resource stream, string command) 520 /* execute serverside command */ 530 /* {{{ proto array ftp_raw(resource stream, string command) 531 Sends a literal command to the FTP server */ 545 /* execute arbitrary ftp command */ 1318 Sends a SITE command to the server */ 1332 /* send the site command */
|
| /PHP_TRUNK/ext/standard/ |
| H A D | proc_open.h | 48 char *command; member in struct:php_process_handle
|
| H A D | proc_open.c | 256 pefree(proc->command, proc->is_persistent); 343 add_assoc_string(return_value, "command", proc->command, 1); 428 /* {{{ proto resource proc_open(string command, array descriptorspec, array &pipes [, string cwd [, array env [, array other_options]]]) 432 char *command, *cwd=NULL; local 474 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "saz|s!a!a!", &command, 480 command = pestrdup(command, is_persistent); 500 command_len = strlen(command); 737 newprocok = CreateProcess(NULL, command, [all...] |
| H A D | file.c | 907 /* {{{ proto resource popen(string command, string mode) 908 Execute a command and open either a read or a write pipe to it */ 911 char *command, *mode; local 917 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ps", &command, &command_len, &mode, &mode_len) == FAILURE) { 931 fp = VCWD_POPEN(command, posix_mode); 933 php_error_docref2(NULL TSRMLS_CC, command, posix_mode, E_WARNING, "%s", strerror(errno)); 941 php_error_docref2(NULL TSRMLS_CC, command, mode, E_WARNING, "%s", strerror(errno));
|
| H A D | basic_functions.c | 1029 ZEND_ARG_INFO(0, command) 1035 ZEND_ARG_INFO(0, command) 1040 ZEND_ARG_INFO(0, command) 1045 ZEND_ARG_INFO(0, command) 1115 ZEND_ARG_INFO(0, command) 1898 ZEND_ARG_INFO(0, command) 4239 Get options from the command line argument list */
|
| /PHP_TRUNK/ext/mysqlnd/ |
| H A D | mysqlnd_wireprotocol.c | 978 Every command starts a new TX and packet numbers are reset to 0. 990 net->data->m.consume_uneaten_data(net, packet->command TSRMLS_CC); 996 int1store(buffer + MYSQLND_HEADER_SIZE, packet->command); 1007 int1store(p, packet->command);
|
| H A D | mysqlnd_wireprotocol.h | 159 enum php_mysqlnd_server_command command; member in struct:st_mysqlnd_packet_command
|
| H A D | mysqlnd.c | 57 "Please use an administration tool to reset your password with the command SET PASSWORD = PASSWORD('your_existing_password'). This will " 62 PHPAPI const char * const mysqlnd_out_of_sync = "Commands out of sync; you can't run this command now"; 216 zend_bool silent, enum php_mysqlnd_server_command command, 222 DBG_INF_FMT("silent=%u packet=%u command=%s", silent, ok_packet, mysqlnd_command_to_text[command]); 233 DBG_ERR_FMT("Error while reading %s's OK packet", mysqlnd_command_to_text[command]); 235 mysqlnd_command_to_text[command], getpid()); 280 DBG_ERR_FMT("Error while reading %s's EOF packet", mysqlnd_command_to_text[command]); 282 mysqlnd_command_to_text[command], getpid()); 314 MYSQLND_METHOD(mysqlnd_conn_data, simple_command_send_request)(MYSQLND_CONN_DATA * conn, enum php_mysqlnd_server_command command, 685 const char * const command = conn->options->init_commands[current_command]; local [all...] |
| H A D | mysqlnd_structs.h | 472 typedef enum_func_status (*func_mysqlnd_conn_data__simple_command)(MYSQLND_CONN_DATA * conn, enum php_mysqlnd_server_command command, const zend_uchar * const arg, size_t arg_len, enum mysqlnd_packet_type ok_packet, zend_bool silent, zend_bool ignore_upsert_status TSRMLS_DC); 473 typedef enum_func_status (*func_mysqlnd_conn_data__simple_command_handle_response)(MYSQLND_CONN_DATA * conn, enum mysqlnd_packet_type ok_packet, zend_bool silent, enum php_mysqlnd_server_command command, zend_bool ignore_upsert_status TSRMLS_DC); 497 typedef enum_func_status (*func_mysqlnd_conn_data__simple_command_send_request)(MYSQLND_CONN_DATA * conn, enum php_mysqlnd_server_command command, const zend_uchar * const arg, size_t arg_len, zend_bool silent, zend_bool ignore_upsert_status TSRMLS_DC);
|
| /PHP_TRUNK/sapi/cgi/ |
| H A D | cgi_main.c | 1820 /* we've got query string that has no = - apache CGI will pass it to command line */ 1845 /* define ini entries on command line */ 1875 /* if we're started on command line, check to see if 2245 /* override path_translated if -f on command line */ 2254 /* file is on command line, but not in -f opt */ 2270 * this allows command lines like:
|