Searched refs:statCache (Results 1 – 3 of 3) sorted by relevance
128 auto statCache = llvm::make_unique<FakeStatCache>(); in TEST_F() local129 statCache->InjectDirectory("/tmp", 42); in TEST_F()130 statCache->InjectFile("/tmp/test", 43); in TEST_F()135 statCache->InjectDirectory(DirName, 44); in TEST_F()136 statCache->InjectFile(FileName, 45); in TEST_F()139 manager.addStatCache(std::move(statCache)); in TEST_F()179 auto statCache = llvm::make_unique<FakeStatCache>(); in TEST_F() local180 statCache->InjectDirectory(".", 41); in TEST_F()181 statCache->InjectFile("foo.cpp", 42); in TEST_F()182 statCache->InjectFile("bar.cpp", 43); in TEST_F()[all …]
64 void FileManager::addStatCache(std::unique_ptr<FileSystemStatCache> statCache, in addStatCache() argument66 assert(statCache && "No stat cache provided?"); in addStatCache()68 statCache->setNextStatCache(std::move(StatCache)); in addStatCache()69 StatCache = std::move(statCache); in addStatCache()77 LastCache->setNextStatCache(std::move(statCache)); in addStatCache()80 void FileManager::removeStatCache(FileSystemStatCache *statCache) { in removeStatCache() argument81 if (!statCache) in removeStatCache()84 if (StatCache.get() == statCache) { in removeStatCache()92 while (PrevCache && PrevCache->getNextStatCache() != statCache) in removeStatCache()96 PrevCache->setNextStatCache(statCache->takeNextStatCache()); in removeStatCache()
189 void addStatCache(std::unique_ptr<FileSystemStatCache> statCache,193 void removeStatCache(FileSystemStatCache *statCache);