Lines Matching refs:module
228 AP_DECLARE_DATA module *ap_top_module = NULL;
229 AP_DECLARE_DATA module **ap_loaded_modules=NULL;
233 /* a list of the module symbol names with the trailing "_module"removed */
243 * the module->next linked list because of better memory locality (resulting
256 * module in question... the core doesn't (and can't) know. However, there
273 module *modp;
314 module *modp;
333 module *modp;
444 /* If a module is deliberately returning something else
470 * added by a module and registered.
479 AP_DECLARE(void) ap_register_hooks(module *m, apr_pool_t *p)
492 static void ap_add_module_commands(module *m, apr_pool_t *p);
497 module *m;
503 module **m;
516 static void ap_add_module_commands(module *m, apr_pool_t *p)
548 AP_DECLARE(const char *) ap_add_module(module *m, apr_pool_t *p,
554 * after the file has been linked and the module structure within it
568 "because the dynamic module limit was "
573 * If this fails some module forgot to call ap_reserve_module_slots*.
646 * when the module is removed, its slot is lost so all the current
652 AP_DECLARE(void) ap_remove_module(module *m)
654 module *modp;
658 /* We are the top module, special case */
663 /* Not the top module, find use. When found modp will
664 * point to the module _before_ us in the list
672 /* Uh-oh, this module doesn't exist */
674 "Cannot remove module %s: not found in module list",
679 /* Eliminate us from the module list */
693 AP_DECLARE(const char *) ap_add_loaded_module(module *mod, apr_pool_t *p,
696 module **m;
700 * Add module pointer to top of chained module list
708 * And module pointer to list of loaded modules
711 * exists for adding a dynamically loaded module
723 AP_DECLARE(void) ap_remove_loaded_module(module *mod)
725 module **m;
726 module **m2;
730 * Remove module pointer from chained module list
735 * Remove module pointer from list of loaded modules
737 * Note: 1. We cannot determine if the module was successfully
739 * 2. We have not to complain explicity when the module
755 module **m;
756 module **m2;
764 * Initialise total_modules variable and module indices
776 ap_loaded_modules = (module **)apr_palloc(process->pool,
777 sizeof(module *) * conf_vector_length);
808 AP_DECLARE(const char *) ap_find_module_name(module *m)
820 AP_DECLARE(module *) ap_find_linked_module(const char *name)
822 module *modp;
1054 const char *cmd_name, module **mod)
1057 module *modp;
1072 module *mod, apr_pool_t *pconf)
1107 module *mod = ap_top_module;
1288 "perhaps misspelled or defined by a module "
1295 "', perhaps misspelled or defined by a module "
1670 "', perhaps misspelled or defined by a module "
2240 /* Setting the main loglevel resets all per-module log levels.
2452 module *m)
2465 module *m;
2490 static void show_overrides(const command_rec *pc, module *pm)
2508 * but module doesn't support per-dir configuration
2563 * the directive arguments, in what module they are handled, and in
2583 /* Show the preloaded module names. Used for httpd -l. */