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

  /external/clang/include/clang/Basic/
FileSystemStatCache.h 1 //===--- FileSystemStatCache.h - Caching for 'stat' calls -------*- C++ -*-===//
11 /// \brief Defines the FileSystemStatCache interface.
29 class FileSystemStatCache {
32 OwningPtr<FileSystemStatCache> NextStatCache;
35 virtual ~FileSystemStatCache() {}
53 bool isFile, int *FileDescriptor, FileSystemStatCache *Cache);
58 void setNextStatCache(FileSystemStatCache *Cache) {
63 FileSystemStatCache *getNextStatCache() { return NextStatCache.get(); }
68 FileSystemStatCache *takeNextStatCache() { return NextStatCache.take(); }
76 if (FileSystemStatCache *Next = getNextStatCache()
    [all...]
FileManager.h 43 class FileSystemStatCache;
171 OwningPtr<FileSystemStatCache> StatCache;
184 /// \brief Installs the provided FileSystemStatCache object within
195 void addStatCache(FileSystemStatCache *statCache, bool AtBeginning = false);
197 /// \brief Removes the specified FileSystemStatCache object from the manager.
198 void removeStatCache(FileSystemStatCache *statCache);
200 /// \brief Removes all FileSystemStatCache objects from the manager.
  /external/clang/lib/Basic/
FileSystemStatCache.cpp 1 //===--- FileSystemStatCache.cpp - Caching for 'stat' calls ---------------===//
10 // This file defines the FileSystemStatCache interface.
14 #include "clang/Basic/FileSystemStatCache.h"
31 void FileSystemStatCache::anchor() { }
33 /// FileSystemStatCache::get - Get the 'stat' information for the specified
42 bool FileSystemStatCache::get(const char *Path, struct stat &StatBuf,
44 FileSystemStatCache *Cache) {
Android.mk 29 FileSystemStatCache.cpp \
FileManager.cpp 21 #include "clang/Basic/FileSystemStatCache.h"
201 void FileManager::addStatCache(FileSystemStatCache *statCache,
210 FileSystemStatCache *LastCache = StatCache.get();
217 void FileManager::removeStatCache(FileSystemStatCache *statCache) {
228 FileSystemStatCache *PrevCache = StatCache.get();
570 return FileSystemStatCache::get(Path, StatBuf, isFile, FileDescriptor,
576 return FileSystemStatCache::get(FilePath.c_str(), StatBuf,
  /external/clang/include/clang/Lex/
PTHManager.h 34 class FileSystemStatCache;
130 /// createStatCache - Returns a FileSystemStatCache object for use with
134 FileSystemStatCache *createStatCache();
  /external/clang/unittests/Basic/
FileManagerTest.cpp 12 #include "clang/Basic/FileSystemStatCache.h"
23 class FakeStatCache : public FileSystemStatCache {
52 // Implement FileSystemStatCache::getStat().
  /external/clang/lib/Lex/
PTHLexer.cpp 16 #include "clang/Basic/FileSystemStatCache.h"
669 class PTHStatCache : public FileSystemStatCache {
704 FileSystemStatCache *PTHManager::createStatCache() {
  /external/clang/lib/Frontend/
CacheTokens.cpp 18 #include "clang/Basic/FileSystemStatCache.h"
513 class StatListener : public FileSystemStatCache {

Completed in 354 milliseconds