| /PHP_5_4/build/ |
| H A D | mkdep.awk | 29 cmd=$4 34 cmd=cmd " " $i 57 cmdx=cmd " " filenames[i]
|
| H A D | order_by_dep.awk | 9 function get_deps(module_name, depline, cmd) 14 cmd = "grep PHP_ADD_EXTENSION_DEP ext/" module_name "/config*.m4" 15 while (cmd | getline) { 22 close(cmd)
|
| H A D | shtool | 38 ## Usage: shtool [<options>] [<cmd-name> [<cmd-options>] [<cmd-args>]] 99 echo 'Usage: shtool [<options>] [<cmd-name> [<cmd-options>] [<cmd-args>]]' 107 echo 'Available <cmd-name> [<cmd-options>] [<cmd-args>]:' 112 echo ' <sed-cmd>] <fil [all...] |
| /PHP_5_4/ext/standard/tests/file/windows_acls/ |
| H A D | common.inc | 71 $cmd = $icacls . ' ' . $path_escaped . ' /inheritance:r /deny ' . $user . ':(F,M,R,RX,W)'; 72 exec($cmd); 80 $cmd = $icacls . ' ' . $path_escaped . ' /remove:d ' . $user; 81 exec($cmd); 82 $cmd = $icacls . ' ' . $path_escaped . ' /remove:g ' . $user; 83 exec($cmd); 95 $cmd = $icacls . ' ' . $path_escaped . ' /deny ' . $user . ':(F,M,R,RX,W)'; 96 exec($cmd); 103 $cmd = $icacls . ' ' . $path_escaped . ' /remove:d ' . $user; 104 exec($cmd); [all...] |
| /PHP_5_4/ext/zip/lib/ |
| H A D | zip_source_buffer.c | 89 read_data(void *state, void *data, zip_uint64_t len, enum zip_source_cmd cmd) 98 switch (cmd) { 86 read_data(void *state, void *data, zip_uint64_t len, enum zip_source_cmd cmd) argument
|
| H A D | zip_source_crc.c | 81 zip_uint64_t len, enum zip_source_cmd cmd) 88 switch (cmd) { 77 crc_read(struct zip_source *src, void *_ctx, void *data, zip_uint64_t len, enum zip_source_cmd cmd) argument
|
| H A D | zip_source_deflate.c | 254 zip_uint64_t len, enum zip_source_cmd cmd) 261 switch (cmd) { 326 zip_uint64_t len, enum zip_source_cmd cmd) 334 switch (cmd) { 248 deflate_compress(struct zip_source *src, void *ud, void *data, zip_uint64_t len, enum zip_source_cmd cmd) argument 319 deflate_decompress(struct zip_source *src, void *ud, void *data, zip_uint64_t len, enum zip_source_cmd cmd) argument
|
| H A D | zip_source_filep.c | 58 enum zip_source_cmd cmd); 128 read_file(void *state, void *data, zip_uint64_t len, enum zip_source_cmd cmd) 137 switch (cmd) { 124 read_file(void *state, void *data, zip_uint64_t len, enum zip_source_cmd cmd) argument
|
| H A D | zip_source_pkware.c | 188 zip_uint64_t len, enum zip_source_cmd cmd) 195 switch (cmd) { 181 pkware_decrypt(struct zip_source *src, void *ud, void *data, zip_uint64_t len, enum zip_source_cmd cmd) argument
|
| H A D | zip_source_zip.c | 50 enum zip_source_cmd cmd); 123 read_zip(void *state, void *data, zip_uint64_t len, enum zip_source_cmd cmd) 133 switch (cmd) { 120 read_zip(void *state, void *data, zip_uint64_t len, enum zip_source_cmd cmd) argument
|
| /PHP_5_4/ |
| H A D | ltmain.sh | 2679 for cmd in $cmds; do 2681 eval cmd=\"$cmd\" 2682 $show "$cmd" 2683 $run eval "$cmd" || exit $? 2693 for cmd in $cmds; do 2695 eval cmd=\"$cmd\" 2696 $show "$cmd" 2697 $run eval "$cmd" || exi [all...] |
| /PHP_5_4/sapi/cli/tests/ |
| H A D | php_cli_server.inc | 22 $cmd = "{$php_executable} -t {$doc_root} -n -S " . PHP_CLI_SERVER_ADDRESS; 24 $cmd .= " {$router}"; 27 $handle = proc_open(addslashes($cmd), $descriptorspec, $pipes, $doc_root, NULL, array("bypass_shell" => true, "suppress_errors" => true)); 29 $cmd = "exec {$php_executable} -t {$doc_root} -n -S " . PHP_CLI_SERVER_ADDRESS; 31 $cmd .= " {$router}"; 33 $cmd .= " 2>/dev/null"; 35 $handle = proc_open($cmd, $descriptorspec, $pipes, $doc_root);
|
| /PHP_5_4/TSRM/ |
| H A D | tsrm_win32.c | 49 globals->comspec = _strdup((GetVersion()<0x80000000)?"cmd.exe":"command.com"); 468 char *cmd; local 535 cmd = (char*)malloc(strlen(command)+strlen(TWG(comspec))+sizeof(" /c ")+2); 536 if (!cmd) { 540 sprintf(cmd, "%s /c \"%s\"", TWG(comspec), command); 542 res = CreateProcessAsUser(token_user, NULL, cmd, &security, &security, security.bInheritHandle, dwCreateFlags, env, cwd, &startup, &process); 545 res = CreateProcess(NULL, cmd, &security, &security, security.bInheritHandle, dwCreateFlags, env, cwd, &startup, &process); 547 free(cmd); 684 TSRM_API int shmctl(int key, int cmd, struct shmid_ds *buf) { argument 691 switch (cmd) { [all...] |
| H A D | tsrm_win32.h | 107 TSRM_API int shmctl(int key, int cmd, struct shmid_ds *buf);
|
| /PHP_5_4/ext/ftp/ |
| H A D | ftp.c | 81 * it sends the string "cmd args\r\n" if args is non-null, or 82 * "cmd\r\n" if args is null 85 const char *cmd, 112 static char** ftp_genlist(ftpbuf_t *ftp, const char *cmd, const char *path TSRMLS_DC); 447 ftp_exec(ftpbuf_t *ftp, const char *cmd) argument 452 if (!ftp_putcmd(ftp, "SITE EXEC", cmd)) { 466 ftp_raw(ftpbuf_t *ftp, const char *cmd, zval *return_value) argument 468 if (ftp == NULL || cmd == NULL) { 471 if (!ftp_putcmd(ftp, cmd, NULL)) { 1080 ftp_site(ftpbuf_t *ftp, const char *cmd) argument 1101 ftp_putcmd(ftpbuf_t *ftp, const char *cmd, const char *args) argument 1600 ftp_genlist(ftpbuf_t *ftp, const char *cmd, const char *path TSRMLS_DC) argument [all...] |
| H A D | ftp.h | 122 int ftp_exec(ftpbuf_t *ftp, const char *cmd); 125 void ftp_raw(ftpbuf_t *ftp, const char *cmd, zval *return_value); 192 int ftp_site(ftpbuf_t *ftp, const char *cmd);
|
| /PHP_5_4/ext/readline/ |
| H A D | readline_cli.c | 626 char *cmd; local 630 cmd = estrndup(&line[1], cmd_len); 632 zend_alter_ini_entry_ex(cmd, cmd_len + 1, param, strlen(param), PHP_INI_USER, PHP_INI_STAGE_RUNTIME, 0 TSRMLS_CC); 633 efree(cmd);
|
| /PHP_5_4/ext/standard/ |
| H A D | exec.c | 60 PHPAPI int php_exec(int type, char *cmd, zval *array, zval *return_value TSRMLS_DC) argument 77 fp = VCWD_POPEN(cmd, "rb"); 79 fp = VCWD_POPEN(cmd, "r"); 82 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to fork [%s]", cmd); 173 char *cmd; local 179 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|z/", &cmd, &cmd_len, &ret_code) == FAILURE) { 183 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|z/z/", &cmd, &cmd_len, &ret_array, &ret_code) == FAILURE) { 193 ret = php_exec(mode, cmd, NULL, return_value TSRMLS_CC); 199 ret = php_exec(2, cmd, ret_array, return_value TSRMLS_CC); 244 char *cmd; local 335 char *cmd; local 400 char *cmd = NULL; local 421 char *cmd = NULL; local [all...] |
| H A D | exec.h | 39 PHPAPI int php_exec(int type, char *cmd, zval *array, zval *return_value TSRMLS_DC);
|
| /PHP_5_4/ext/sybase_ct/ |
| H A D | php_sybase_ct.c | 315 if (result->sybase_ptr->cmd) { 316 ct_cancel(NULL, result->sybase_ptr->cmd, CS_CANCEL_ALL); 352 ct_cmd_drop(sybase_ptr->cmd); 718 if (ct_cmd_alloc(sybase->connection, &sybase->cmd)!=CS_SUCCEED) { 1000 if (ct_command(sybase_ptr->cmd, CS_LANG_CMD, cmdbuf, CS_NULLTERM, CS_UNUSED)!=CS_SUCCEED) { 1004 if (ct_send(sybase_ptr->cmd)!=CS_SUCCEED) { 1009 while ((retcode = ct_results(sybase_ptr->cmd, &restype))==CS_SUCCEED) { 1020 ct_cancel(NULL, sybase_ptr->cmd, CS_CANCEL_CURRENT); 1028 ct_cancel(NULL, sybase_ptr->cmd, CS_CANCEL_ALL); 1045 ct_cancel(NULL, sybase_ptr->cmd, CS_CANCEL_AL [all...] |
| H A D | php_sybase_ct.h | 81 CS_COMMAND *cmd; member in struct:__anon253
|
| /PHP_5_4/sapi/apache/ |
| H A D | mod_php5.c | 56 static CONST_PREFIX char *php_apache_value_handler_ex(cmd_parms *cmd, HashTable *conf, char *arg1, char *arg2, int mode); 57 static CONST_PREFIX char *php_apache_value_handler(cmd_parms *cmd, HashTable *conf, char *arg1, char *arg2); 58 static CONST_PREFIX char *php_apache_admin_value_handler(cmd_parms *cmd, HashTable *conf, char *arg1, char *arg2); 59 static CONST_PREFIX char *php_apache_flag_handler(cmd_parms *cmd, HashTable *conf, char *arg1, char *arg2); 60 static CONST_PREFIX char *php_apache_flag_handler_ex(cmd_parms *cmd, HashTable *conf, char *arg1, char *arg2, int mode); 61 static CONST_PREFIX char *php_apache_admin_flag_handler(cmd_parms *cmd, HashTable *conf, char *arg1, char *arg2); 796 static CONST_PREFIX char *php_apache_value_handler_ex(cmd_parms *cmd, HashTable *conf, char *arg1, char *arg2, int mode) argument 809 per_dir_entry.htaccess = ((cmd->override & (RSRC_CONF|ACCESS_CONF)) == 0); 833 static CONST_PREFIX char *php_apache_value_handler(cmd_parms *cmd, HashTable *conf, char *arg1, char *arg2) argument 835 return php_apache_value_handler_ex(cmd, con 841 php_apache_admin_value_handler(cmd_parms *cmd, HashTable *conf, char *arg1, char *arg2) argument 849 php_apache_flag_handler_ex(cmd_parms *cmd, HashTable *conf, char *arg1, char *arg2, int mode) argument 866 php_apache_flag_handler(cmd_parms *cmd, HashTable *conf, char *arg1, char *arg2) argument 874 php_apache_admin_flag_handler(cmd_parms *cmd, HashTable *conf, char *arg1, char *arg2) argument 882 php_apache_phpini_set(cmd_parms *cmd, HashTable *conf, char *arg) argument [all...] |
| /PHP_5_4/sapi/apache2filter/ |
| H A D | apache_config.c | 57 static const char *real_value_hnd(cmd_parms *cmd, void *dummy, const char *name, const char *value, int status) argument 68 e.value = apr_pstrdup(cmd->pool, value); 71 e.htaccess = ((cmd->override & (RSRC_CONF|ACCESS_CONF)) == 0); 77 static const char *php_apache_value_handler(cmd_parms *cmd, void *dummy, const char *name, const char *value) argument 79 return real_value_hnd(cmd, dummy, name, value, PHP_INI_PERDIR); 82 static const char *php_apache_admin_value_handler(cmd_parms *cmd, void *dummy, const char *name, const char *value) argument 84 return real_value_hnd(cmd, dummy, name, value, PHP_INI_SYSTEM); 87 static const char *real_flag_hnd(cmd_parms *cmd, void *dummy, const char *arg1, const char *arg2, int status) argument 98 return real_value_hnd(cmd, dummy, arg1, bool_val, status); 101 static const char *php_apache_flag_handler(cmd_parms *cmd, voi argument 106 php_apache_admin_flag_handler(cmd_parms *cmd, void *dummy, const char *name, const char *value) argument 111 php_apache_phpini_set(cmd_parms *cmd, void *mconfig, const char *arg) argument [all...] |
| /PHP_5_4/sapi/apache2handler/ |
| H A D | apache_config.c | 57 static const char *real_value_hnd(cmd_parms *cmd, void *dummy, const char *name, const char *value, int status) argument 68 e.value = apr_pstrdup(cmd->pool, value); 71 e.htaccess = ((cmd->override & (RSRC_CONF|ACCESS_CONF)) == 0); 77 static const char *php_apache_value_handler(cmd_parms *cmd, void *dummy, const char *name, const char *value) argument 79 return real_value_hnd(cmd, dummy, name, value, PHP_INI_PERDIR); 82 static const char *php_apache_admin_value_handler(cmd_parms *cmd, void *dummy, const char *name, const char *value) argument 84 return real_value_hnd(cmd, dummy, name, value, PHP_INI_SYSTEM); 87 static const char *real_flag_hnd(cmd_parms *cmd, void *dummy, const char *arg1, const char *arg2, int status) argument 98 return real_value_hnd(cmd, dummy, arg1, bool_val, status); 101 static const char *php_apache_flag_handler(cmd_parms *cmd, voi argument 106 php_apache_admin_flag_handler(cmd_parms *cmd, void *dummy, const char *name, const char *value) argument 111 php_apache_phpini_set(cmd_parms *cmd, void *mconfig, const char *arg) argument [all...] |
| /PHP_5_4/sapi/apache_hooks/ |
| H A D | mod_php5.c | 80 static CONST_PREFIX char *php_apache_value_handler_ex(cmd_parms *cmd, HashTable *conf, char *arg1, char *arg2, int mode); 81 static CONST_PREFIX char *php_apache_value_handler(cmd_parms *cmd, php_per_dir_config *conf, char *arg1, char *arg2); 82 static CONST_PREFIX char *php_apache_admin_value_handler(cmd_parms *cmd, php_per_dir_config *conf, char *arg1, char *arg2); 83 static CONST_PREFIX char *php_apache_flag_handler(cmd_parms *cmd, php_per_dir_config *conf, char *arg1, char *arg2); 84 static CONST_PREFIX char *php_apache_flag_handler_ex(cmd_parms *cmd, HashTable *conf, char *arg1, char *arg2, int mode); 85 static CONST_PREFIX char *php_apache_admin_flag_handler(cmd_parms *cmd, php_per_dir_config *conf, char *arg1, char *arg2); 895 static CONST_PREFIX char *php_apache_value_handler_ex(cmd_parms *cmd, HashTable *conf, char *arg1, char *arg2, int mode) argument 991 static CONST_PREFIX char *php_set_uri_handler(cmd_parms *cmd, void *dummy, char *arg1) argument 993 return php_set_server_handler(cmd->server, arg1, AP_URI_TRANS, AP_HANDLER_TYPE_FILE); 998 static CONST_PREFIX char *php_set_uri_handler_code(cmd_parms *cmd, voi argument 1006 php_set_header_handler(cmd_parms *cmd, php_per_dir_config *conf, char *arg1) argument 1010 php_set_header_handler_code(cmd_parms *cmd, php_per_dir_config *conf, char *arg1) argument 1018 php_set_auth_handler(cmd_parms *cmd, php_per_dir_config *conf, char *arg1) argument 1022 php_set_auth_handler_code(cmd_parms *cmd, php_per_dir_config *conf, char *arg1) argument 1031 php_set_access_handler(cmd_parms *cmd, php_per_dir_config *conf, char *arg1) argument 1035 php_set_access_handler_code(cmd_parms *cmd, php_per_dir_config *conf, char *arg1) argument 1044 php_set_type_handler(cmd_parms *cmd, php_per_dir_config *conf, char *arg1) argument 1048 php_set_type_handler_code(cmd_parms *cmd, php_per_dir_config *conf, char *arg1) argument 1057 php_set_fixup_handler(cmd_parms *cmd, php_per_dir_config *conf, char *arg1) argument 1061 php_set_fixup_handler_code(cmd_parms *cmd, php_per_dir_config *conf, char *arg1) argument 1069 php_set_logger_handler(cmd_parms *cmd, php_per_dir_config *conf, char *arg1) argument 1073 php_set_logger_handler_code(cmd_parms *cmd, php_per_dir_config *conf, char *arg1) argument 1082 php_set_post_read_handler(cmd_parms *cmd, php_per_dir_config *conf, char *arg1) argument 1086 php_set_post_read_handler_code(cmd_parms *cmd, php_per_dir_config *conf, char *arg1) argument 1097 php_set_require(cmd_parms *cmd, void *dummy, char *arg1) argument 1105 php_set_response_handler(cmd_parms *cmd, php_per_dir_config *conf, char *arg1) argument 1109 php_set_response_handler_code(cmd_parms *cmd, php_per_dir_config *conf, char *arg1) argument 1117 php_apache_value_handler(cmd_parms *cmd, php_per_dir_config *conf, char *arg1, char *arg2) argument 1125 php_apache_admin_value_handler(cmd_parms *cmd, php_per_dir_config *conf, char *arg1, char *arg2) argument 1133 php_apache_flag_handler_ex(cmd_parms *cmd, HashTable *conf, char *arg1, char *arg2, int mode) argument 1150 php_apache_flag_handler(cmd_parms *cmd, php_per_dir_config *conf, char *arg1, char *arg2) argument 1158 php_apache_admin_flag_handler(cmd_parms *cmd, php_per_dir_config *conf, char *arg1, char *arg2) argument 1166 php_apache_phpini_set(cmd_parms *cmd, HashTable *conf, char *arg) argument [all...] |