Home
last modified time | relevance | path

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

/external/clang/unittests/Basic/
DFileManagerTest.cpp128 auto statCache = llvm::make_unique<FakeStatCache>(); in TEST_F() local
129 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() local
180 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 …]
/external/llvm-project/clang/unittests/Basic/
DFileManagerTest.cpp152 auto statCache = std::make_unique<FakeStatCache>(); in TEST_F() local
153 statCache->InjectDirectory("/tmp", 42); in TEST_F()
154 statCache->InjectFile("/tmp/test", 43); in TEST_F()
159 statCache->InjectDirectory(DirName, 44); in TEST_F()
160 statCache->InjectFile(FileName, 45); in TEST_F()
163 manager.setStatCache(std::move(statCache)); in TEST_F()
205 auto statCache = std::make_unique<FakeStatCache>(); in TEST_F() local
206 statCache->InjectDirectory(".", 41); in TEST_F()
207 statCache->InjectFile("foo.cpp", 42); in TEST_F()
208 statCache->InjectFile("bar.cpp", 43); in TEST_F()
[all …]
/external/clang/lib/Basic/
DFileManager.cpp63 void FileManager::addStatCache(std::unique_ptr<FileSystemStatCache> statCache, in addStatCache() argument
65 assert(statCache && "No stat cache provided?"); in addStatCache()
67 statCache->setNextStatCache(std::move(StatCache)); in addStatCache()
68 StatCache = std::move(statCache); in addStatCache()
76 LastCache->setNextStatCache(std::move(statCache)); in addStatCache()
79 void FileManager::removeStatCache(FileSystemStatCache *statCache) { in removeStatCache() argument
80 if (!statCache) in removeStatCache()
83 if (StatCache.get() == statCache) { in removeStatCache()
91 while (PrevCache && PrevCache->getNextStatCache() != statCache) in removeStatCache()
95 PrevCache->setNextStatCache(statCache->takeNextStatCache()); in removeStatCache()
/external/clang/include/clang/Basic/
DFileManager.h191 void addStatCache(std::unique_ptr<FileSystemStatCache> statCache,
195 void removeStatCache(FileSystemStatCache *statCache);
/external/llvm-project/clang/lib/Basic/
DFileManager.cpp63 void FileManager::setStatCache(std::unique_ptr<FileSystemStatCache> statCache) { in setStatCache() argument
64 assert(statCache && "No stat cache provided?"); in setStatCache()
65 StatCache = std::move(statCache); in setStatCache()
/external/llvm-project/clang/include/clang/Basic/
DFileManager.h142 void setStatCache(std::unique_ptr<FileSystemStatCache> statCache);