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

  /frameworks/compile/libbcc/include/bcc/Support/
File.h 20 #include "bcc/Support/FileBase.h"
24 template<enum FileBase::OpenModeEnum OpenMode>
35 struct FileAttribute<FileBase::kReadMode> {
37 enum { kDefaultLockMode = FileBase::kReadLock };
42 struct FileAttribute<FileBase::kWriteMode> {
44 enum { kDefaultLockMode = FileBase::kWriteLock };
47 template<enum FileBase::OpenModeEnum OpenMode>
48 class File : public FileBase {
51 : FileBase(pFilename, FileAttribute<OpenMode>::kOpenFlags, pFlags) { }
56 unsigned pMaxRetry = FileBase::kDefaultMaxRetryLock
    [all...]
FileMutex.h 22 #include "bcc/Support/FileBase.h"
26 template<enum FileBase::LockModeEnum LockMode>
27 class FileMutex : public FileBase {
30 : FileBase(pFileToLock + ".lock", O_RDONLY | O_CREAT, kDeleteOnClose) { }
34 unsigned pMaxRetry = FileBase::kDefaultMaxRetryLock,
36 FileBase::kDefaultRetryLockInterval) {
37 return FileBase::lock(LockMode, pNonblocking, pMaxRetry, pRetryInterval);
InputFile.h 21 #include "bcc/Support/FileBase.h"
25 class InputFile : public File<FileBase::kReadMode> {
26 typedef File<FileBase::kReadMode> super;
OutputFile.h 21 #include "bcc/Support/FileBase.h"
29 class OutputFile : public File<FileBase::kWriteMode> {
30 typedef File<FileBase::kWriteMode> super;
FileBase.h 31 class FileBase {
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);
150 virtual ~FileBase();
  /frameworks/compile/libbcc/lib/Support/
FileBase.cpp 17 #include "bcc/Support/FileBase.h"
45 FileBase::FileBase(const std::string &pFilename,
77 FileBase::~FileBase() {
81 bool FileBase::open() {
100 bool FileBase::checkFileIntegrity() {
129 void FileBase::detectError() {
134 bool FileBase::lock(enum LockModeEnum pMode,
209 void FileBase::unlock()
    [all...]
Android.mk 27 FileBase.cpp \
  /frameworks/compile/libbcc/lib/Renderscript/
RSCompilerDriver.cpp 144 FileMutex<FileBase::kWriteLock> write_output_mutex(pOutputPath);
155 FileBase::kTruncate | FileBase::kBinary);
186 ir_file = new OutputFile(path.c_str(), FileBase::kTruncate);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
rexec.py 32 class FileBase:
39 class FileWrapper(FileBase):
57 class FileDelegate(FileBase):
63 for m in FileBase.ok_file_methods + ('close',):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
rexec.py 32 class FileBase:
39 class FileWrapper(FileBase):
57 class FileDelegate(FileBase):
63 for m in FileBase.ok_file_methods + ('close',):

Completed in 220 milliseconds