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

  /external/clang/lib/Basic/
FileManager.cpp 181 void FileManager::addStatCache(FileSystemStatCache *statCache,
183 assert(statCache && "No stat cache provided?");
184 if (AtBeginning || StatCache.get() == 0) {
185 statCache->setNextStatCache(StatCache.take());
186 StatCache.reset(statCache);
190 FileSystemStatCache *LastCache = StatCache.get();
194 LastCache->setNextStatCache(statCache);
197 void FileManager::removeStatCache(FileSystemStatCache *statCache) {
    [all...]
  /external/clang/include/clang/Basic/
FileManager.h 151 OwningPtr<FileSystemStatCache> StatCache;
169 /// \param statCache the new stat cache to install. Ownership of this
175 void addStatCache(FileSystemStatCache *statCache, bool AtBeginning = false);
178 void removeStatCache(FileSystemStatCache *statCache);
  /external/clang/include/clang/Serialization/
Module.h 344 void *StatCache;
  /external/clang/lib/Serialization/
Module.cpp 40 LocalNumTypes(0), TypeOffsets(0), BaseTypeIndex(0), StatCache(0)
ASTReader.cpp     [all...]
  /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 63 milliseconds