Searched defs:mtime (Results 1 - 7 of 7) sorted by relevance
/httpd/modules/ssl/ |
H A D | ssl_engine_pphrase.c | 51 apr_time_t *mtime) 66 if (mtime) { 67 *mtime = sbuf.mtime; 177 * file name/mtime hasn't changed, then reuse the existing key. 364 /* remember mtime of encrypted keys */ 50 exists_and_readable(const char *fname, apr_pool_t *pool, apr_time_t *mtime) argument
|
/httpd/modules/http/ |
H A D | http_protocol.c | 338 apr_int64_t mtime, reqtime; local 345 mtime = apr_time_sec(apr_date_parse_http( 347 if (mtime == APR_DATE_BAD) { 348 mtime = apr_time_sec(r->mtime ? r->mtime : apr_time_now()); 357 if ((ius != APR_DATE_BAD) && (mtime > ius)) { 358 if (reqtime < mtime + 60) { 427 apr_int64_t mtime; local 434 mtime 489 apr_int64_t mtime; local [all...] |
/httpd/modules/metadata/ |
H A D | mod_mime_magic.c | 197 char mtime[12]; member in struct:record::header
|
/httpd/modules/proxy/ |
H A D | mod_proxy_ftp.c | 996 apr_time_t mtime = 0L; local 1842 mtime = timegm(&tms); 1843 mtime *= APR_USEC_PER_SEC; 1848 mtime = mktime(&tms); 1849 mtime += tms.tm_gmtoff; 1850 mtime *= APR_USEC_PER_SEC; 1852 mtime = 0L; 1978 if (mtime != 0L) { 1980 apr_rfc822_date(datestr, mtime);
|
/httpd/modules/lua/ |
H A D | lua_request.c | 975 * lua_apr_touch; r:touch(string [, time]) - Sets mtime of a file 982 apr_time_t mtime; local 987 mtime = (apr_time_t)luaL_optnumber(L, 3, (lua_Number)apr_time_now()); 988 status = apr_file_mtime_set(path, mtime, r->pool); 1490 lua_pushstring(L, "mtime"); 1491 lua_pushnumber(L, (lua_Number) file_info.mtime);
|
/httpd/include/ |
H A D | httpd.h | 877 apr_time_t mtime; member in struct:request_rec
|
/httpd/modules/mappers/ |
H A D | mod_rewrite.c | 362 /* cached maps contain an mtime for the whole map and live in a subpool 366 apr_time_t mtime; member in struct:__anon241 1015 map->mtime = t; 1019 else if (map->mtime != t) { 1022 map->mtime = t; 1057 if (map->mtime != t) { 1060 map->mtime = t; 1611 value = get_cache_value(s->cachename, st.mtime, key, r->pool); 1620 set_cache_value(s->cachename, st.mtime, key, ""); 1626 set_cache_value(s->cachename, st.mtime, ke [all...] |
Completed in 52 milliseconds