HomeSort by: relevance | last modified time | path
    Searched refs:StatCache (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
FileManager.h 116 std::unique_ptr<FileSystemStatCache> StatCache;
143 /// \param statCache the new stat cache to install. Ownership of this
145 void setStatCache(std::unique_ptr<FileSystemStatCache> statCache);
  /src/external/apache2/llvm/dist/clang/lib/Basic/
FileManager.cpp 63 void FileManager::setStatCache(std::unique_ptr<FileSystemStatCache> statCache) {
64 assert(statCache && "No stat cache provided?");
65 StatCache = std::move(statCache);
68 void FileManager::clearStatCache() { StatCache.reset(); }
561 StatCache.get(), *FS);
567 StatCache.get(), *FS);

Completed in 27 milliseconds