Lines Matching defs:match
242 a_file *match;
258 match = (a_file *) apr_hash_get(sconf->fileht, r->filename, APR_HASH_KEY_STRING);
259 if (match == NULL)
263 ap_set_module_config(r->request_config, &file_cache_module, match);
266 r->finfo = match->finfo;
311 a_file *match;
326 match = ap_get_module_config(r->request_config, &file_cache_module);
328 if (match == NULL) {
341 ap_update_mtime(r, match->finfo.mtime);
352 if (mod_time == match->finfo.mtime)
353 datestr = match->mtimestr;
364 r->clength = match->finfo.size;
365 apr_table_setn(r->headers_out, "Content-Length", match->sizestr);
374 if (match->is_mmapped == TRUE)
375 rc = mmap_handler(r, match);
377 rc = sendfile_handler(r, match);