MCPcopy Index your code
hub / github.com/apache/httpd / file_cache_create

Function file_cache_create

modules/cache/mod_cache_disk.c:203–212  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

201}
202
203static apr_status_t file_cache_create(disk_cache_conf *conf, disk_cache_file_t *file,
204 apr_pool_t *pool)
205{
206 file->pool = pool;
207 file->tempfile = apr_pstrcat(pool, conf->cache_root, AP_TEMPFILE, NULL);
208
209 apr_pool_cleanup_register(pool, file, file_cache_temp_cleanup, apr_pool_cleanup_null);
210
211 return APR_SUCCESS;
212}
213
214/* These two functions get and put state information into the data
215 * file for an ap_cache_el, this state information will be read

Callers 2

create_entityFunction · 0.85
open_entityFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected