Lines Matching defs:entry_core
903 core_dir_config *entry_core;
904 entry_core = ap_get_core_module_config(entry_config);
909 if (entry_core->r || entry_core->d_components > seg) {
918 if (entry_core->d_components
919 && ((entry_core->d_components < seg)
920 || (entry_core->d_is_fnmatch
921 ? (apr_fnmatch(entry_core->d, r->filename,
923 : (strcmp(r->filename, entry_core->d) != 0)))) {
1196 * where we left off (we gave up after we hit entry_core->r)
1204 core_dir_config *entry_core;
1205 entry_core = ap_get_core_module_config(sec_ent[sec_idx]);
1207 if (!entry_core->r) {
1211 if (entry_core->refs && entry_core->refs->nelts) {
1215 nmatch = entry_core->refs->nelts;
1219 if (ap_regexec(entry_core->r, r->filename, nmatch, pmatch, 0)) {
1225 ((const char **)entry_core->refs->elts)[i]) {
1227 ((const char **)entry_core->refs->elts)[i],
1424 core_dir_config *entry_core;
1425 entry_core = ap_get_core_module_config(sec_ent[sec_idx]);
1428 len = strlen(entry_core->d);
1435 if (entry_core->r) {
1441 if (entry_core->refs && entry_core->refs->nelts) {
1445 nmatch = entry_core->refs->nelts;
1449 if (ap_regexec(entry_core->r, r->uri, nmatch, pmatch, 0)) {
1455 ((const char **)entry_core->refs->elts)[i]) {
1457 ((const char **)entry_core->refs->elts)[i],
1467 if ((entry_core->d_is_fnmatch
1468 ? apr_fnmatch(entry_core->d, cache->cached, APR_FNM_PATHNAME)
1469 : (strncmp(entry_core->d, cache->cached, len)
1471 && entry_core->d[len - 1] != '/'
1634 core_dir_config *entry_core;
1635 entry_core = ap_get_core_module_config(sec_ent[sec_idx]);
1637 if (entry_core->r) {
1643 if (entry_core->refs && entry_core->refs->nelts) {
1647 nmatch = entry_core->refs->nelts;
1651 if (ap_regexec(entry_core->r, cache->cached, nmatch, pmatch, 0)) {
1657 ((const char **)entry_core->refs->elts)[i]) {
1659 ((const char **)entry_core->refs->elts)[i],
1668 if ((entry_core->d_is_fnmatch
1669 ? apr_fnmatch(entry_core->d, cache->cached, APR_FNM_PATHNAME)
1670 : strcmp(entry_core->d, cache->cached))) {
1785 core_dir_config *entry_core;
1787 entry_core = ap_get_core_module_config(sec_ent[sec_idx]);
1789 AP_DEBUG_ASSERT(entry_core->condition_ifelse != 0);
1790 if (entry_core->condition_ifelse & AP_CONDITION_ELSE) {
1796 if (entry_core->condition_ifelse & AP_CONDITION_IF) {
1797 rc = ap_expr_exec(r, entry_core->condition, &err);