Home
last modified time | relevance | path

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

/external/clang/lib/Basic/
DFileManager.cpp70 if (AtBeginning || !StatCache.get()) { in addStatCache()
71 statCache->setNextStatCache(StatCache.release()); in addStatCache()
72 StatCache.reset(statCache); in addStatCache()
76 FileSystemStatCache *LastCache = StatCache.get(); in addStatCache()
87 if (StatCache.get() == statCache) { in removeStatCache()
89 StatCache.reset(StatCache->takeNextStatCache()); in removeStatCache()
94 FileSystemStatCache *PrevCache = StatCache.get(); in removeStatCache()
103 StatCache.reset(nullptr); in clearStatCaches()
456 return FileSystemStatCache::get(Path, Data, isFile, F,StatCache.get(), *FS); in getStatValue()
462 StatCache.get(), *FS); in getStatValue()
/external/clang/lib/Frontend/
DCacheTokens.cpp575 StatListener *StatCache = new StatListener(PW.getPM()); in CacheTokens() local
576 PP.getFileManager().addStatCache(StatCache, /*AtBeginning=*/true); in CacheTokens()
585 PP.getFileManager().removeStatCache(StatCache); in CacheTokens()
/external/clang/include/clang/Basic/
DFileManager.h172 std::unique_ptr<FileSystemStatCache> StatCache; variable