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 67 void FileManager::addStatCache(FileSystemStatCache *statCache,
69 assert(statCache && "No stat cache provided?");
70 if (AtBeginning || !StatCache.get()) {
71 statCache->setNextStatCache(StatCache.release());
72 StatCache.reset(statCache);
76 FileSystemStatCache *LastCache = StatCache.get();
80 LastCache->setNextStatCache(statCache);
83 void FileManager::removeStatCache(FileSystemStatCache *statCache) {
    [all...]
  /external/clang/include/clang/Basic/
FileManager.h 172 std::unique_ptr<FileSystemStatCache> StatCache;
191 /// \param statCache the new stat cache to install. Ownership of this
197 void addStatCache(FileSystemStatCache *statCache, bool AtBeginning = false);
200 void removeStatCache(FileSystemStatCache *statCache);
  /external/clang/lib/Frontend/
CacheTokens.cpp 575 StatListener *StatCache = new StatListener(PW.getPM());
576 PP.getFileManager().addStatCache(StatCache, /*AtBeginning=*/true);
585 PP.getFileManager().removeStatCache(StatCache);

Completed in 60 milliseconds