Searched defs:exp (Results 1 - 4 of 4) sorted by relevance
/httpd/modules/cache/ |
H A D | cache_util.h | 222 apr_time_t exp; /* expiration */ member in struct:__anon84
|
H A D | mod_cache.c | 819 apr_time_t exp, date, lastmod, now; local 938 exp = apr_date_parse_http(exps); 941 exp = APR_DATE_BAD; 1040 else if (exps != NULL && exp == APR_DATE_BAD) { 1044 else if (!dconf->store_expired && exp != APR_DATE_BAD 1045 && exp < r->request_time) { 1408 if (exp == APR_DATE_BAD) { 1427 exp = date + x; 1442 exp = date + x; 1445 exp [all...] |
/httpd/modules/aaa/ |
H A D | mod_authnz_ldap.c | 1663 static const char *set_bind_pattern(cmd_parms *cmd, void *_cfg, const char *exp, const char *subst) argument 1668 regexp = ap_pregcomp(cmd->pool, exp, AP_REG_EXTENDED); 1672 "expression '", exp, "'", NULL);
|
/httpd/modules/ssl/ |
H A D | ssl_engine_vars.c | 716 apr_time_exp_t exp = {0}; local 730 exp.tm_year = DIGIT2NUM(tm->data); 731 if (exp.tm_year <= 50) exp.tm_year += 100; 734 exp.tm_year = DIGIT2NUM(tm->data) * 100 + DIGIT2NUM(tm->data + 2) - 1900; 738 exp.tm_mon = DIGIT2NUM(dp) - 1; 739 exp.tm_mday = DIGIT2NUM(dp + 2) + 1; 740 exp.tm_hour = DIGIT2NUM(dp + 4); 741 exp.tm_min = DIGIT2NUM(dp + 6); 742 exp [all...] |
Completed in 28 milliseconds