Searched refs:module_index (Results 1 - 18 of 18) sorted by relevance

/macosx-10.10/apache-793/httpd/server/
H A Dutil_debug.c107 return ((void **)cv)[m->module_index];
123 AP_DECLARE(int) ap_get_server_module_loglevel(const server_rec *s, int module_index);
126 AP_DECLARE(int) ap_get_server_module_loglevel(const server_rec *s, int module_index) argument
128 if (module_index < 0 || s->log.module_levels == NULL ||
129 s->log.module_levels[module_index] < 0)
134 return s->log.module_levels[module_index];
139 AP_DECLARE(int) ap_get_conn_module_loglevel(const conn_rec *c, int module_index);
142 AP_DECLARE(int) ap_get_conn_module_loglevel(const conn_rec *c, int module_index) argument
145 if (module_index < 0 || l->module_levels == NULL ||
146 l->module_levels[module_index] <
161 ap_get_conn_server_module_loglevel(const conn_rec *c, const server_rec *s, int module_index) argument
181 ap_get_request_module_loglevel(const request_rec *r, int module_index) argument
[all...]
H A Dlog.c62 /* we know core's module_index is 0 */
683 return cpystrn(buf, ap_find_module_short_name(info->module_index), buflen);
1102 static void log_error_core(const char *file, int line, int module_index, argument
1143 int configured_level = r ? ap_get_request_module_loglevel(r, module_index) :
1144 c ? ap_get_conn_server_module_loglevel(c, s, module_index) :
1145 ap_get_server_module_loglevel(s, module_index);
1217 info.module_index = APLOG_NO_MODULE;
1235 info.module_index = APLOG_NO_MODULE;
1251 info.module_index = module_index;
1296 ap_log_error_(const char *file, int line, int module_index, int level, apr_status_t status, const server_rec *s, const char *fmt, ...) argument
1308 ap_log_perror_(const char *file, int line, int module_index, int level, apr_status_t status, apr_pool_t *p, const char *fmt, ...) argument
1320 ap_log_rerror_(const char *file, int line, int module_index, int level, apr_status_t status, const request_rec *r, const char *fmt, ...) argument
1349 ap_log_cserror_(const char *file, int line, int module_index, int level, apr_status_t status, const conn_rec *c, const server_rec *s, const char *fmt, ...) argument
1362 ap_log_cerror_(const char *file, int line, int module_index, int level, apr_status_t status, const conn_rec *c, const char *fmt, ...) argument
[all...]
H A Dutil_script.c52 /* we know core's module_index is 0 */
410 #define SCRIPT_LOG_MARK __FILE__,__LINE__,module_index
415 int module_index)
423 int trace_log = APLOG_R_MODULE_IS_LEVEL(r, module_index, APLOG_TRACE1);
661 char *buffer, int module_index)
664 module_index);
726 int module_index)
729 module_index);
775 int module_index,
786 (void *) &strs, module_index);
412 ap_scan_script_header_err_core_ex(request_rec *r, char *buffer, int (*getsfunc) (char *, int, void *), void *getsfunc_data, int module_index) argument
660 ap_scan_script_header_err_ex(request_rec *r, apr_file_t *f, char *buffer, int module_index) argument
723 ap_scan_script_header_err_brigade_ex(request_rec *r, apr_bucket_brigade *bb, char *buffer, int module_index) argument
773 ap_scan_script_header_err_strs_ex(request_rec *r, char *buffer, int module_index, const char **termch, int *termarg, ...) argument
[all...]
H A Dconfig.c56 /* 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;
571 if (m->module_index == -1) {
583 m->module_index = total_modules++;
609 ap_module_short_names[m->module_index] = ap_malloc(len + 1);
610 memcpy(ap_module_short_names[m->module_index], sym_name, len);
611 ap_module_short_names[m->module_index][le
819 ap_find_module_short_name(int module_index) argument
[all...]
H A Dutil_expr_eval.c37 /* we know core's module_index is 0 */
48 #define LOG_MARK(info) __FILE__, __LINE__, (info)->module_index
405 int module_index)
411 info->module_index = module_index;
400 ap_expr_parse_cmd_mi(const cmd_parms *cmd, const char *expr, unsigned int flags, const char **err, ap_expr_lookup_fn_t *lookup_fn, int module_index) argument
H A Dcore.c108 /* we know core's module_index is 0 */
3076 ap_set_module_loglevel(cmd->pool, log, module->module_index, level);
/macosx-10.10/apache-793/httpd/include/
H A Dutil_script.h101 * @param module_index The module index to be used for logging
105 char *buffer, int module_index);
131 * @param module_index The module index to be used for logging
137 int module_index);
167 * @param module_index The module index to be used for logging
178 int module_index,
210 * @param module_index The module index to be used for logging
215 void *getsfunc_data, int module_index);
H A Dhttp_log.h120 * APLOG_NO_MODULE may be passed as module_index to ap_log_error() and related
141 * Constant to store module_index for the current file.
152 * APLOG_MODULE_INDEX contains the module_index of the current module if
158 * ::APLOG_MODULE_INDEX will be passed as module_index. In cases where
160 * as module_index.
182 #define APLOG_MODULE_IS_LEVEL(s,module_index,level) \
185 (ap_get_server_module_loglevel(s, module_index) \
187 #define APLOG_C_MODULE_IS_LEVEL(c,module_index,level) \
189 (ap_get_conn_module_loglevel(c, module_index) \
191 #define APLOG_CS_MODULE_IS_LEVEL(c,s,module_index,leve
[all...]
H A Dap_expr.h53 int module_index; member in struct:__anon6081
325 * @param module_index The module_index to set for the expression
334 int module_index);
338 * module_index = APLOG_MODULE_INDEX
H A Dhttp_config.h346 int module_index; member in struct:module_struct
427 static int * const aplog_module_index = &(foo##_module.module_index)
508 (((void **)(v))[(m)->module_index])
510 ((((void **)(v))[(m)->module_index]) = (val))
518 * @param index The module_index of the module to get the loglevel for.
526 * @param index The module_index of the module to get the loglevel for.
536 * @param index The module_index of the module to get the loglevel for.
546 * @param index The module_index of the module to get the loglevel for.
555 * @param index The module_index of the module to set the loglevel for.
758 * @param module_index Th
[all...]
H A Dhttp_core.h354 #define AP_CORE_MODULE_INDEX (AP_DEBUG_ASSERT(core_module.module_index == 0), 0)
819 int module_index; member in struct:ap_errorlog_info
/macosx-10.10/cxxfilt-11/cxxfilt/bfd/
H A Dliboasys.h70 unsigned int module_index; member in struct:_oasys_ar_data
H A Doasys.c1106 ar->module_index = 0;
1108 p = ar->module + ar->module_index;
1109 ar->module_index++;
1111 if (ar->module_index <= ar->module_count)
/macosx-10.10/xnu-2782.1.97/EXTERNAL_HEADERS/mach-o/
H A Dloader.h1012 uint32_t module_index; /* index into the module table this symbol member in struct:dylib_table_of_contents
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Support/
H A DMachO.h497 uint32_t module_index; member in struct:llvm::MachO::dylib_table_of_contents
/macosx-10.10/apache-793/httpd/modules/ssl/
H A Dssl_engine_config.c1251 info->module_index = APLOG_MODULE_INDEX;
/macosx-10.10/apache-793/httpd/modules/lua/
H A Dlua_request.c1060 res.module_index = APLOG_MODULE_INDEX;
/macosx-10.10/apache-793/httpd/modules/filters/
H A Dmod_include.c1594 expr_info.module_index = APLOG_MODULE_INDEX;

Completed in 154 milliseconds