Searched defs:cmds (Results 1 - 7 of 7) sorted by relevance
/httpd/modules/proxy/ |
H A D | mod_proxy_connect.c | 503 static const command_rec cmds[] = variable 516 cmds, /* command apr_table_t */
|
/httpd/modules/proxy/balancers/ |
H A D | mod_lbmethod_heartbeat.c | 452 static const command_rec cmds[] = { variable 464 cmds, /* command apr_table_t */
|
/httpd/modules/filters/ |
H A D | mod_ext_filter.c | 336 static const command_rec cmds[] = variable 942 cmds,
|
H A D | mod_charset_lite.c | 1096 static const command_rec cmds[] = variable 1134 cmds,
|
/httpd/modules/generators/ |
H A D | mod_info.c | 227 static int mod_info_has_cmd(const command_rec * cmds, ap_directive_t * dir) argument 230 if (cmds == NULL) 232 for (cmd = cmds; cmd->name; ++cmd) { 247 static int mod_info_module_cmds(request_rec * r, const command_rec * cmds, argument 256 if (level < mod_info_module_cmds(r, cmds, dir->first_child, 262 else if (mod_info_has_cmd(cmds, dir)) { 904 cmd = modp->cmds; 927 mod_info_module_cmds(r, modp->cmds, ap_conftree, 0,
|
/httpd/include/ |
H A D | http_config.h | 404 const command_rec *cmds; member in struct:module_struct 1195 * @param cmds The table to search 1199 const command_rec *cmds);
|
/httpd/server/ |
H A D | config.c | 523 cmd = m->cmds; 1041 const command_rec *cmds) 1043 while (cmds->name) { 1044 if (!strcasecmp(name, cmds->name)) 1045 return cmds; 1047 ++cmds; 1060 if (modp->cmds && (cmdp = ap_find_command(cmd_name, modp->cmds))) { 2572 for (pc = ap_loaded_modules[n]->cmds; pc && pc->name; ++pc) { 1040 ap_find_command(const char *name, const command_rec *cmds) argument
|
Completed in 63 milliseconds