Searched refs:exp (Results 1 - 5 of 5) sorted by relevance

/httpd/include/
H A Dhttpd.h2169 #define ap_assert(exp) ((exp) ? (void)0 : ap_log_assert(#exp,__FILE__,__LINE__))
2179 #define AP_DEBUG_ASSERT(exp) ap_assert(exp)
2181 #define AP_DEBUG_ASSERT(exp) ((void)0)
/httpd/modules/ssl/
H A Dssl_engine_vars.c716 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...]
/httpd/modules/cache/
H A Dcache_util.h222 apr_time_t exp; /* expiration */ member in struct:__anon84
H A Dmod_cache.c819 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 Dmod_authnz_ldap.c1663 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);

Completed in 46 milliseconds