Home
last modified time | relevance | path

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

/freebsd-10-stable/sys/dev/an/
Dif_an.c202 static char an_conf_cache[256]; variable
278 strcpy(an_conf_cache, "per"); in sysctl_an_cache_mode()
281 strcpy(an_conf_cache, "raw"); in sysctl_an_cache_mode()
284 strcpy(an_conf_cache, "dbm"); in sysctl_an_cache_mode()
288 error = sysctl_handle_string(oidp, an_conf_cache, in sysctl_an_cache_mode()
289 sizeof(an_conf_cache), req); in sysctl_an_cache_mode()
291 if (strncmp(an_conf_cache,"dbm", 3) == 0) { in sysctl_an_cache_mode()
294 if (strncmp(an_conf_cache,"per", 3) == 0) { in sysctl_an_cache_mode()
297 if (strncmp(an_conf_cache,"raw", 3) == 0) { in sysctl_an_cache_mode()
305 0, sizeof(an_conf_cache), sysctl_an_cache_mode, "A", "");