Lines Matching refs:cachep
783 free_cache(cache_t **cachep) in free_cache() argument
790 if ((cachep == NULL) || (*cachep == NULL)) in free_cache()
793 if ((*cachep)->mounts) { in free_cache()
795 for (index = 0; index < (*cachep)->hash_size; index++) { in free_cache()
796 entry = (*cachep)->mounts[index]; in free_cache()
803 free((*cachep)->mounts); in free_cache()
806 free(*cachep); in free_cache()
807 *cachep = NULL; in free_cache()
860 cache_sync(rcm_handle_t *hd, cache_t **cachep) in cache_sync() argument
869 if ((hd == NULL) || (cachep == NULL)) { in cache_sync()
877 old_cache = *cachep; in cache_sync()
912 *cachep = new_cache; in cache_sync()