OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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.
39
class
FileSystemStatCache
{
42
OwningPtr<
FileSystemStatCache
> NextStatCache;
45
virtual ~
FileSystemStatCache
() {}
63
int *FileDescriptor,
FileSystemStatCache
*Cache);
67
void setNextStatCache(
FileSystemStatCache
*Cache) {
72
FileSystemStatCache
*getNextStatCache() { return NextStatCache.get(); }
77
FileSystemStatCache
*takeNextStatCache() { return NextStatCache.take(); }
85
if (
FileSystemStatCache
*Next = getNextStatCache()
[
all
...]
FileManager.h
43
class
FileSystemStatCache
;
172
OwningPtr<
FileSystemStatCache
> StatCache;
185
/// \brief Installs the provided
FileSystemStatCache
object within
196
void addStatCache(
FileSystemStatCache
*statCache, bool AtBeginning = false);
198
/// \brief Removes the specified
FileSystemStatCache
object from the manager.
199
void removeStatCache(
FileSystemStatCache
*statCache);
201
/// \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() { }
43
///
FileSystemStatCache
::get - Get the 'stat' information for the specified
52
bool
FileSystemStatCache
::get(const char *Path, FileData &Data, bool isFile,
53
int *FileDescriptor,
FileSystemStatCache
*Cache) {
Android.mk
29
FileSystemStatCache
.cpp \
FileManager.cpp
21
#include "clang/Basic/
FileSystemStatCache
.h"
122
void FileManager::addStatCache(
FileSystemStatCache
*statCache,
131
FileSystemStatCache
*LastCache = StatCache.get();
138
void FileManager::removeStatCache(
FileSystemStatCache
*statCache) {
149
FileSystemStatCache
*PrevCache = StatCache.get();
503
return
FileSystemStatCache
::get(Path, Data, isFile, FileDescriptor,
509
return
FileSystemStatCache
::get(FilePath.c_str(), Data, isFile,
/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
{
49
// Implement
FileSystemStatCache
::getStat().
/external/clang/lib/Lex/
PTHLexer.cpp
16
#include "clang/Basic/
FileSystemStatCache
.h"
675
class PTHStatCache : public
FileSystemStatCache
{
712
FileSystemStatCache
*PTHManager::createStatCache() {
/external/clang/lib/Frontend/
CacheTokens.cpp
18
#include "clang/Basic/
FileSystemStatCache
.h"
512
class StatListener : public
FileSystemStatCache
{
Completed in 579 milliseconds