Lines Matching refs:entry
64 msg_entry *entry = APR_ARRAY_IDX(dconf->entries, i, msg_entry *);
65 if (entry->hook != allhooks && entry->hook != hookname)
67 if (entry->condition) {
68 int ret = ap_expr_exec(r, entry->condition, &err);
77 msg = ap_expr_str_exec(r, entry->msg_expr, &err);
83 msg, hookname, entry->msg_expr->filename,
84 entry->msg_expr->line_number);
187 msg_entry *entry = apr_pcalloc(cmd->pool, sizeof(msg_entry));
195 entry->msg_expr = ap_expr_parse_cmd(cmd, arg1, AP_EXPR_FLAG_STRING_RESULT|
212 entry->hook = hooks[j];
217 if (entry->hook == NULL) {
219 entry->hook = allhooks;
226 entry->condition = ap_expr_parse_cmd(cmd, expr,
238 if (entry->hook == NULL)
239 entry->hook = hooks[0];
244 APR_ARRAY_PUSH(dconf->entries, msg_entry *) = entry;