Home
last modified time | relevance | path

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

/dports/www/py-turbogears2/TurboGears2-2.3.12/tg/support/
H A Dstatics.py134 self.paths_cache = LRUCache(1024)
138 filepath = self.paths_cache.get(full_path)
145 self.paths_cache.put(full_path, filepath)
/dports/misc/vifm/vifm-0.11/src/
H A Dfilelist.c262 trie_free(view->custom.paths_cache); in flist_free_view()
264 view->custom.paths_cache = NULL; in flist_free_view()
830 trie_free(view->custom.paths_cache); in flist_custom_start()
831 view->custom.paths_cache = trie_create(); in flist_custom_start()
842 if(trie_put(view->custom.paths_cache, canonic_path) != 0) in flist_custom_add()
861 if(trie_put(view->custom.paths_cache, full_path) != 0) in flist_custom_put()
1050 trie_free(view->custom.paths_cache); in flist_custom_finish_internal()
1051 view->custom.paths_cache = NULL; in flist_custom_finish_internal()
1332 assert(flist_custom_active(from) && to->custom.paths_cache == NULL && in flist_custom_clone()
/dports/misc/vifm/vifm-0.11/src/ui/
H A Dui.h288 struct trie_t *paths_cache; member