OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:statCache
(Results
1 - 3
of
3
) sorted by null
/external/clang/unittests/Basic/
FileManagerTest.cpp
122
FakeStatCache *
statCache
= new FakeStatCache;
123
statCache
->InjectDirectory("/tmp", 42);
124
statCache
->InjectFile("/tmp/test", 43);
129
statCache
->InjectDirectory(DirName, 44);
130
statCache
->InjectFile(FileName, 45);
133
manager.addStatCache(
statCache
);
173
FakeStatCache *
statCache
= new FakeStatCache;
174
statCache
->InjectDirectory(".", 41);
175
statCache
->InjectFile("foo.cpp", 42);
176
statCache
->InjectFile("bar.cpp", 43)
[
all
...]
/external/clang/lib/Basic/
FileManager.cpp
122
void FileManager::addStatCache(FileSystemStatCache *
statCache
,
124
assert(
statCache
&& "No stat cache provided?");
125
if (AtBeginning ||
StatCache
.get() == 0) {
126
statCache
->setNextStatCache(
StatCache
.take());
127
StatCache
.reset(
statCache
);
131
FileSystemStatCache *LastCache =
StatCache
.get();
135
LastCache->setNextStatCache(
statCache
);
138
void FileManager::removeStatCache(FileSystemStatCache *
statCache
) {
[
all
...]
/external/clang/include/clang/Basic/
FileManager.h
172
OwningPtr<FileSystemStatCache>
StatCache
;
190
/// \param
statCache
the new stat cache to install. Ownership of this
196
void addStatCache(FileSystemStatCache *
statCache
, bool AtBeginning = false);
199
void removeStatCache(FileSystemStatCache *
statCache
);
Completed in 72 milliseconds