Searched refs:mod (Results 1 - 9 of 9) sorted by relevance
/httpd/build/win32/ |
H A D | fixBaseAddrs.pl | 76 my $mod = $curlib; 78 if (!$reported{$mod}) { 79 $reported{$mod} = 1; 86 if ($modnames[$i] eq $mod) { 96 my $mod = $1; 97 if (!$reported{$mod}) { 98 $reported{$mod} = 1; 99 print "$mod must be added\n"; 100 @modnames = (@modnames, $mod);
|
/httpd/modules/core/test/conf/ |
H A D | test38.conf | 8 Error it seems you do not have mod perl installed.
|
/httpd/server/ |
H A D | config.c | 693 AP_DECLARE(const char *) ap_add_loaded_module(module *mod, apr_pool_t *p, argument 702 error = ap_add_module(mod, p, short_name); 717 *m++ = mod; 723 AP_DECLARE(void) ap_remove_loaded_module(module *mod) argument 732 ap_remove_module(mod); 744 if (*m2 == mod && done == 0) 1054 const char *cmd_name, module **mod) 1059 for (modp = *mod; modp; modp = modp->next) { 1061 *mod = modp; 1072 module *mod, apr_pool_ 1053 ap_find_command_in_modules( const char *cmd_name, module **mod) argument 1069 ap_set_config_vectors(server_rec *server, ap_conf_vector_t *section_vector, const char *section, module *mod, apr_pool_t *pconf) argument 1107 module *mod = ap_top_module; local [all...] |
H A D | main.c | 475 module **mod; local 735 for (mod = ap_prelinked_modules; *mod != NULL; mod++) { 736 ap_register_hooks(*mod, pconf);
|
H A D | core.c | 1791 module *mod = ap_top_module; local 1792 result = ap_find_command_in_modules(argv[i], &mod);
|
/httpd/include/ |
H A D | http_config.h | 742 * @param mod The module structure of the module to add 746 AP_DECLARE(const char *) ap_add_loaded_module(module *mod, apr_pool_t *p, 750 * @param mod the module structure of the module to remove 752 AP_DECLARE(void) ap_remove_loaded_module(module *mod); variable 1204 * @param mod Pointer to the first module in the linked list; will be set to 1207 * *mod will be changed to point to the module containing the 1211 module **mod); 1220 * @param mod The module which is defining the config data. 1227 module *mod, apr_pool_t *pconf);
|
/httpd/modules/cache/ |
H A D | mod_socache_shmcb.c | 185 /* Addition modulo 'mod' */ 186 #define SHMCB_CYCLIC_INCREMENT(val,inc,mod) \ 187 (((val) + (inc)) % (mod)) 189 /* Subtraction (or "distance between") modulo 'mod' */ 190 #define SHMCB_CYCLIC_SPACE(val1,val2,mod) \ 192 ((val2) + (mod) - (val1)))
|
/httpd/modules/lua/ |
H A D | lua_request.c | 1377 module *mod; local 1381 mod = ap_find_linked_module(moduleName); 1382 if (mod && mod->cmds) { 1387 for (cmd = mod->cmds; cmd->name; ++cmd) {
|
/httpd/support/ |
H A D | apxs.in | 421 my $mod;
|
Completed in 2891 milliseconds