HomeSort by relevance Sort by last modified time
    Searched refs:StatCache (Results 1 - 3 of 3) sorted by null

  /external/clang/lib/Basic/
FileManager.cpp 201 void FileManager::addStatCache(FileSystemStatCache *statCache,
203 assert(statCache && "No stat cache provided?");
204 if (AtBeginning || StatCache.get() == 0) {
205 statCache->setNextStatCache(StatCache.take());
206 StatCache.reset(statCache);
210 FileSystemStatCache *LastCache = StatCache.get();
214 LastCache->setNextStatCache(statCache);
217 void FileManager::removeStatCache(FileSystemStatCache *statCache) {
    [all...]
  /external/clang/include/clang/Basic/
FileManager.h 171 OwningPtr<FileSystemStatCache> StatCache;
189 /// \param statCache the new stat cache to install. Ownership of this
195 void addStatCache(FileSystemStatCache *statCache, bool AtBeginning = false);
198 void removeStatCache(FileSystemStatCache *statCache);
  /external/clang/lib/Frontend/
CacheTokens.cpp 551 StatListener *StatCache = new StatListener(PW.getPM());
552 PP.getFileManager().addStatCache(StatCache, /*AtBeginning=*/true);
561 PP.getFileManager().removeStatCache(StatCache);

Completed in 3435 milliseconds