| /PHP_5_5/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_5/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...] |
| /PHP_5_5/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 | php_ftp.c | 224 ZEND_ARG_INFO(0, cmd) 511 char *cmd; local 514 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rs", &z_ftp, &cmd, &cmd_len) == FAILURE) { 521 if (!ftp_exec(ftp, cmd)) { 536 char *cmd; local 539 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rs", &z_ftp, &cmd, &cmd_len) == FAILURE) { 546 ftp_raw(ftp, cmd, return_value); 1317 /* {{{ proto bool ftp_site(resource stream, string cmd) 1323 char *cmd; local 1326 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rs", &z_ftp, &cmd, [all...] |
| /PHP_5_5/ext/pdo_dblib/ |
| H A D | dblib_driver.c | 169 static int pdo_dblib_transaction_cmd(const char *cmd, pdo_dbh_t *dbh TSRMLS_DC) argument 174 if (FAIL == dbcmd(H->link, cmd)) {
|
| /PHP_5_5/ext/pdo_pgsql/ |
| H A D | pgsql_driver.c | 468 static int pdo_pgsql_transaction_cmd(const char *cmd, pdo_dbh_t *dbh TSRMLS_DC) argument 474 res = PQexec(H->server, cmd);
|
| /PHP_5_5/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_5/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...] |
| /PHP_5_5/ext/sybase_ct/ |
| H A D | php_sybase_ct.h | 81 CS_COMMAND *cmd; member in struct:__anon253
|
| /PHP_5_5/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_5/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_5/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_5/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...] |
| /PHP_5_5/win32/build/ |
| H A D | mkdist.php | 75 $cmd = "$GLOBALS[build_dir]\\deplister.exe \"$module\" \"$GLOBALS[build_dir]\""; variable 76 $proc = proc_open($cmd,
|
| /PHP_5_5/ext/mysqlnd/ |
| H A D | mysqlnd_ps.c | 1265 enum php_mysqlnd_server_command cmd = COM_STMT_SEND_LONG_DATA; local 1320 ret = conn->m->simple_command(conn, cmd, cmd_buf, packet_len, PROT_LAST , FALSE, TRUE TSRMLS_CC); 1350 if ((packet_len = conn->net->m.consume_uneaten_data(conn->net, cmd TSRMLS_CC))) {
|
| /PHP_5_5/ |
| H A D | run-tests.php | 1670 $cmd = "$php $pass_options $ini_settings -f \"$test_file\" 2>&1 < \"$tmp_post\""; variable 1704 $cmd = "$php $pass_options $ini_settings -f \"$test_file\" 2>&1 < \"$tmp_post\""; variable 1716 $cmd = "$php $pass_options $ini_settings -f \"$test_file\" 2>&1 < \"$tmp_post\""; variable 1731 $cmd = "$php $pass_options $ini_settings -f \"$test_file\" 2>&1 < \"$tmp_post\""; variable 1744 $cmd = "$php $pass_options $ini_settings -f \"$test_file\" 2>&1 < \"$tmp_post\""; variable 1753 $cmd = "$php $pass_options $ini_settings -f \"$test_file\" $args 2>&1"; variable 1762 $cmd = "valgrind -q --tool=memcheck --trace-children=yes --log-file=$memcheck_filename $cmd"; variable 1764 $cmd = "valgrind -q --tool=memcheck --trace-children=yes --log-file-exactly=$memcheck_filename $cmd"; variable [all...] |