Searched defs:item (Results 1 - 4 of 4) sorted by relevance

/httpd/modules/generators/
H A Dmod_autoindex.c106 struct item { struct
200 struct item *p = (struct item *) apr_array_push(arr);
624 new->icon_list = apr_array_make(p, 4, sizeof(struct item));
625 new->alt_list = apr_array_make(p, 4, sizeof(struct item));
627 new->ign_list = apr_array_make(p, 4, sizeof(struct item));
762 struct item *items = (struct item *) list->elts;
766 struct item *p = &items[i];
872 struct item *item
[all...]
/httpd/modules/loggers/
H A Dmod_log_config.c122 * indicate conditions for inclusion of the item (which will cause it
1084 log_format_item *item)
1090 if (item->conditions && item->conditions->nelts != 0) {
1092 int *conds = (int *) item->conditions->elts;
1095 for (i = 0; i < item->conditions->nelts; ++i) {
1102 if ((item->condition_sense && in_list)
1103 || (!item->condition_sense && !in_list)) {
1110 cp = (*item->func) (item
1083 process_item(request_rec *r, request_rec *orig, log_format_item *item) argument
[all...]
/httpd/server/
H A Dlog.c964 ap_errorlog_format_item *item = &items[i]; local
965 if (item->flags & AP_ERRORLOG_FLAG_FIELD_SEP) {
974 if (item->flags & AP_ERRORLOG_FLAG_MESSAGE) {
991 else if (info->level != -1 && (int)item->min_loglevel > info->level) {
996 int item_len = (*item->func)(info, item->arg, buf + len,
999 if (item->flags & AP_ERRORLOG_FLAG_REQUIRED) {
1000 /* required item is empty. skip whole line */
1004 else if (item->flags & AP_ERRORLOG_FLAG_NULL_AS_HYPHEN) {
1211 * info if an item wit
[all...]
H A Dcore.c2744 char **item, *name = ap_getword_conf(cmd->pool, &arg); local
2747 item = (char **)apr_array_push(cmd->server->wild_names);
2750 item = (char **)apr_array_push(cmd->server->names);
2753 *item = name;
4014 ap_errorlog_format_item *item = local
4016 memset(item, 0, sizeof(*item));
4017 res = parse_errorlog_item(p, item, &s);
4022 if (item->flags & AP_ERRORLOG_FLAG_MESSAGE) {
4030 if (is_main_fmt && item
[all...]

Completed in 36 milliseconds