OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FileSystemStatCache
(Results
1 - 10
of
10
) sorted by null
/external/clang/include/clang/Basic/
FileSystemStatCache.h
1
//===---
FileSystemStatCache
.h - Caching for 'stat' calls -------*- C++ -*-===//
10
// This file defines the
FileSystemStatCache
interface.
27
class
FileSystemStatCache
{
29
llvm::OwningPtr<
FileSystemStatCache
> NextStatCache;
32
virtual ~
FileSystemStatCache
() {}
39
///
FileSystemStatCache
::get - Get the 'stat' information for the specified
49
FileSystemStatCache
*Cache);
54
void setNextStatCache(
FileSystemStatCache
*Cache) {
59
FileSystemStatCache
*getNextStatCache() { return NextStatCache.get(); }
64
FileSystemStatCache
*takeNextStatCache() { return NextStatCache.take();
[
all
...]
FileManager.h
41
class
FileSystemStatCache
;
150
llvm::OwningPtr<
FileSystemStatCache
> StatCache;
163
/// \brief Installs the provided
FileSystemStatCache
object within
174
void addStatCache(
FileSystemStatCache
*statCache, bool AtBeginning = false);
176
/// \brief Removes the specified
FileSystemStatCache
object from the manager.
177
void removeStatCache(
FileSystemStatCache
*statCache);
/external/clang/include/clang/Lex/
PTHManager.h
34
class
FileSystemStatCache
;
131
/// createStatCache - Returns a
FileSystemStatCache
object for use with
135
FileSystemStatCache
*createStatCache();
/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
///
FileSystemStatCache
::get - Get the 'stat' information for the specified
40
bool
FileSystemStatCache
::get(const char *Path, struct stat &StatBuf,
41
int *FileDescriptor,
FileSystemStatCache
*Cache) {
Android.mk
27
FileSystemStatCache
.cpp \
FileManager.cpp
21
#include "clang/Basic/
FileSystemStatCache
.h"
182
void FileManager::addStatCache(
FileSystemStatCache
*statCache,
191
FileSystemStatCache
*LastCache = StatCache.get();
198
void FileManager::removeStatCache(
FileSystemStatCache
*statCache) {
209
FileSystemStatCache
*PrevCache = StatCache.get();
544
return
FileSystemStatCache
::get(Path, StatBuf, FileDescriptor,
550
return
FileSystemStatCache
::get(FilePath.c_str(), StatBuf, FileDescriptor,
/external/clang/unittests/Basic/
FileManagerTest.cpp
11
#include "clang/Basic/
FileSystemStatCache
.h"
24
class FakeStatCache : public
FileSystemStatCache
{
53
// Implement
FileSystemStatCache
::getStat().
/external/clang/lib/Lex/
PTHLexer.cpp
16
#include "clang/Basic/
FileSystemStatCache
.h"
673
class PTHStatCache : public
FileSystemStatCache
{
708
FileSystemStatCache
*PTHManager::createStatCache() {
/external/clang/lib/Frontend/
CacheTokens.cpp
18
#include "clang/Basic/
FileSystemStatCache
.h"
513
class StatListener : public
FileSystemStatCache
{
/external/clang/lib/Serialization/
ASTReader.cpp
39
#include "clang/Basic/
FileSystemStatCache
.h"
909
class ASTStatCache : public
FileSystemStatCache
{
[
all
...]
Completed in 807 milliseconds