Home
last modified time | relevance | path

Searched refs:cache_key (Results 1 – 5 of 5) sorted by relevance

/freebsd/tools/lua/
H A Dtemplate.lua344 function template.compile(view, cache_key, plain)
346 if cache_key == "no-cache" then
349 cache_key = cache_key or view
351 if cache[cache_key] then return cache[cache_key], true end
353 if caching then cache[cache_key] = func end
357 function template.compile_file(view, cache_key)
358 return template.compile(view, cache_key, false)
361 function template.compile_string(view, cache_key)
362 return template.compile(view, cache_key, true)
598 function template.process(view, context, cache_key, plain)
[all …]
/freebsd/usr.sbin/nscd/
H A Dquery.c339 write_request->cache_key = calloc(1, in on_write_request_read1()
342 assert(write_request->cache_key != NULL); in on_write_request_read1()
343 memcpy(write_request->cache_key, qstate->eid_str, in on_write_request_read1()
373 result += qstate->read_func(qstate, write_request->cache_key + in on_write_request_read2()
443 write_request->cache_key, in on_write_request_process()
524 write_request->cache_key, in on_negative_write_request_process()
612 read_request->cache_key = calloc(1, in on_read_request_read1()
615 assert(read_request->cache_key != NULL); in on_read_request_read1()
616 memcpy(read_request->cache_key, qstate->eid_str, in on_read_request_read1()
640 read_request->cache_key in on_read_request_read2()
[all...]
H A Dprotocol.h40 char *cache_key; member
54 char *cache_key; member
H A Dprotocol.c180 free(write_request->cache_key); in finalize_cache_write_request()
237 free(read_request->cache_key); in finalize_cache_read_request()
/freebsd/contrib/ntp/
H A DCommitLog[all...]