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 182 void FileManager::addStatCache(FileSystemStatCache *statCache,
184 assert(statCache && "No stat cache provided?");
185 if (AtBeginning || StatCache.get() == 0) {
186 statCache->setNextStatCache(StatCache.take());
187 StatCache.reset(statCache);
191 FileSystemStatCache *LastCache = StatCache.get();
195 LastCache->setNextStatCache(statCache);
198 void FileManager::removeStatCache(FileSystemStatCache *statCache) {
    [all...]
  /external/clang/include/clang/Basic/
FileManager.h 150 llvm::OwningPtr<FileSystemStatCache> StatCache;
168 /// \param statCache the new stat cache to install. Ownership of this
174 void addStatCache(FileSystemStatCache *statCache, bool AtBeginning = false);
177 void removeStatCache(FileSystemStatCache *statCache);
  /external/clang/include/clang/Serialization/
Module.h 299 void *StatCache;
  /external/clang/lib/Serialization/
Module.cpp 38 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 153 milliseconds