Home
last modified time | relevance | path

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

/freebsd-12.1/sys/dev/an/
H A Dif_an.c205 static char an_conf_cache[256]; variable
279 strcpy(an_conf_cache, "per"); in sysctl_an_cache_mode()
282 strcpy(an_conf_cache, "raw"); in sysctl_an_cache_mode()
285 strcpy(an_conf_cache, "dbm"); in sysctl_an_cache_mode()
289 error = sysctl_handle_string(oidp, an_conf_cache, in sysctl_an_cache_mode()
290 sizeof(an_conf_cache), req); in sysctl_an_cache_mode()
292 if (strncmp(an_conf_cache,"dbm", 3) == 0) { in sysctl_an_cache_mode()
295 if (strncmp(an_conf_cache,"per", 3) == 0) { in sysctl_an_cache_mode()
298 if (strncmp(an_conf_cache,"raw", 3) == 0) { in sysctl_an_cache_mode()
306 0, sizeof(an_conf_cache), sysctl_an_cache_mode, "A", "");