Searched refs:FileBase (Results 1 - 3 of 3) sorted by relevance

/frameworks/compile/libbcc/lib/
H A DFileMutex.h22 #include "FileBase.h"
28 class FileMutex : public FileBase {
31 : FileBase(pFileToLock + ".lock", O_RDONLY | O_CREAT, kDeleteOnClose) { }
35 return FileBase::lock(FileBase::kWriteLock, true, FileBase::kDefaultMaxRetryLock,
36 FileBase::kDefaultRetryLockInterval);
H A DFileBase.h31 class FileBase { class in namespace:bcc
99 FileBase(FileBase &); // Do not implement.
100 void operator=(const FileBase &); // Do not implement.
104 // FileBase. It's a bit set composed by the value defined in
105 // FileBase::FlagEnum.
106 FileBase(const std::string &pFilename, unsigned pOpenFlags, unsigned pFlags);
136 virtual ~FileBase();
H A DFileBase.cpp17 #include "FileBase.h"
42 FileBase::FileBase(const std::string &pFilename, function in class:FileBase
74 FileBase::~FileBase() {
78 bool FileBase::open() {
97 bool FileBase::checkFileIntegrity() {
126 void FileBase::detectError() {
131 bool FileBase::lock(enum LockModeEnum pMode,
206 void FileBase
[all...]

Completed in 147 milliseconds