Lines Matching defs:module_index
56 /* we know core's module_index is 0 */
241 * by module_index.
279 conf_vector[modp->module_index] = (*df)(p, NULL);
318 conf_vector[modp->module_index] = (*modp->create_server_config)(p, s);
337 int i = modp->module_index;
565 if (m->module_index == -1) {
577 m->module_index = total_modules++;
603 ap_module_short_names[m->module_index] = ap_malloc(len + 1);
604 memcpy(ap_module_short_names[m->module_index], sym_name, len);
605 ap_module_short_names[m->module_index][len] = '\0';
606 merger_func_cache[m->module_index] = m->merge_dir_config;
683 free(ap_module_short_names[m->module_index]);
684 ap_module_short_names[m->module_index] = NULL;
685 merger_func_cache[m->module_index] = NULL;
687 m->module_index = -1; /* simulate being unloaded, should
768 (*m)->module_index = total_modules++;
813 AP_DECLARE(const char *) ap_find_module_short_name(int module_index)
815 if (module_index < 0 || module_index >= conf_vector_length)
817 return ap_module_short_names[module_index];