HomeSort by relevance Sort by last modified time
    Searched refs:FileHandle (Results 1 - 25 of 44) sorted by null

1 2

  /frameworks/compile/mclinker/include/mcld/MC/
FileAction.h 15 #include <mcld/Support/FileHandle.h>
40 FileHandle::OpenMode pMode,
41 FileHandle::Permission pPerm = FileHandle::System);
46 FileHandle::OpenMode m_Mode;
47 FileHandle::Permission m_Permission;
InputBuilder.h 20 #include <mcld/Support/FileHandle.h>
73 FileHandle::OpenMode pMode,
74 FileHandle::Permission pPerm = FileHandle::System);
  /frameworks/compile/mclinker/unittests/
FileHandleTest.h 16 class FileHandle;
26 * \see FileHandle
44 mcld::FileHandle* m_pTestee;
FileHandleTest.cpp 9 #include <mcld/Support/FileHandle.h>
23 m_pTestee = new FileHandle();
48 ASSERT_TRUE(m_pTestee->open(path, FileHandle::ReadOnly));
68 ASSERT_TRUE(m_pTestee->delegate(fd, FileHandle::ReadOnly));
89 ASSERT_TRUE(m_pTestee->open(path, FileHandle::ReadOnly));
UniqueGCFactoryBaseTest.cpp 79 MemoryArea* area1 = memFactory->produce(path1, FileHandle::ReadOnly);
80 MemoryArea* area2 = memFactory->produce(path2, FileHandle::ReadOnly);
83 MemoryArea* area3 = memFactory->produce(path1, FileHandle::ReadOnly);
MemoryAreaTest.cpp 9 #include <mcld/Support/FileHandle.h>
54 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadOnly);
68 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadOnly);
80 area->handler()->open(path, FileHandle::ReadOnly);
96 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadOnly) ;
112 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadWrite);
124 area->handler()->open(path, FileHandle::ReadOnly);
140 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadWrite) ;
153 area->handler()->open(path, FileHandle::ReadWrite);
FragmentRefTest.cpp 14 #include <mcld/Support/FileHandle.h>
49 MemoryArea* area = areaFactory->produce(path, FileHandle::ReadWrite);
  /frameworks/compile/mclinker/lib/Support/
FileHandle.cpp 1 //===- FileHandle.cpp -----------------------------------------------------===//
10 #include <mcld/Support/FileHandle.h>
41 // FileHandle
42 FileHandle::FileHandle()
50 FileHandle::~FileHandle()
56 inline static int oflag(FileHandle::OpenMode pMode)
59 if (FileHandle::Unknown == pMode)
62 if (FileHandle::ReadWrite == (pMode & FileHandle::ReadWrite)
    [all...]
MemoryAreaFactory.cpp 36 FileHandle::OpenMode pMode)
41 FileHandle* handler = new FileHandle();
59 FileHandle::OpenMode pMode,
60 FileHandle::Permission pPerm)
65 FileHandle* handler = new FileHandle();
90 MemoryAreaFactory::produce(int pFD, FileHandle::OpenMode pMode)
92 FileHandle* handler = new FileHandle();
    [all...]
ToolOutputFile.cpp 12 #include <mcld/Support/FileHandle.h>
51 FileHandle::OpenMode pMode,
52 FileHandle::Permission pPermission)
Space.cpp 10 #include <mcld/Support/FileHandle.h>
73 Space* Space::Create(FileHandle& pHandler, size_t pStart, size_t pSize)
150 void Space::Release(Space* pSpace, FileHandle& pHandler)
168 void Space::Sync(Space* pSpace, FileHandle& pHandler)
  /external/webkit/Source/WebKit/chromium/public/
WebFileUtilities.h 47 typedef HANDLE FileHandle;
49 typedef int FileHandle;
63 virtual FileHandle openFile(const WebString& path, int mode) { return FileHandle(); }
64 // Should set the FileHandle to a invalid value if the file is closed successfully.
65 virtual void closeFile(FileHandle&) { }
66 virtual long long seekFile(FileHandle, long long offset, int origin) { return 0; }
67 virtual bool truncateFile(FileHandle, long long offset) { return false; }
68 virtual int readFromFile(FileHandle, char* data, int length) { return 0; }
69 virtual int writeToFile(FileHandle, const char* data, int length) { return 0;
    [all...]
WebKitClient.h 123 typedef HANDLE FileHandle;
125 typedef int FileHandle;
130 virtual FileHandle databaseOpenFile(
131 const WebString& vfsFileName, int desiredFlags) { return FileHandle(); }
  /frameworks/compile/mclinker/include/mcld/Support/
MemoryAreaFactory.h 17 #include <mcld/Support/FileHandle.h>
50 FileHandle::OpenMode pMode);
54 FileHandle::OpenMode pMode,
55 FileHandle::Permission pPerm);
63 MemoryArea* produce(int pFD, FileHandle::OpenMode pMode);
ToolOutputFile.h 16 #include <mcld/Support/FileHandle.h>
25 class FileHandle;
40 FileHandle::OpenMode pMode,
41 FileHandle::Permission pPermission);
74 FileHandle m_FileHandle;
HandleToArea.h 18 #include <mcld/Support/FileHandle.h>
34 * Like FileHandle, HandleToArea should neither throw exception nor call
42 FileHandle* handle;
60 Result(FileHandle* pHandle, MemoryArea* pArea)
64 FileHandle* handle;
70 ConstResult(const FileHandle* pHandle, const MemoryArea* pArea)
74 const FileHandle* handle;
79 bool push_back(FileHandle* pHandle, MemoryArea* pArea);
MemoryArea.h 28 class FileHandle;
55 explicit MemoryArea(FileHandle& pFileHandle);
78 const FileHandle* handler() const { return m_pFileHandle; }
79 FileHandle* handler() { return m_pFileHandle; }
117 FileHandle* m_pFileHandle;
Space.h 19 class FileHandle;
80 static Space* Create(FileHandle& pHandler, size_t pOffset, size_t pSize);
84 static void Release(Space* pSpace, FileHandle& pHandler);
86 static void Sync(Space* pSpace, FileHandle& pHandler);
FileHandle.h 1 //===- FileHandle.h -------------------------------------------------------===//
22 /** \class FileHandle
23 * \brief FileHandle class provides an interface for reading from and writing
26 * Operators of FileHandle should neither throw exceptions nor call expressive
29 class FileHandle
73 FileHandle();
75 ~FileHandle();
  /external/llvm/lib/Bitcode/Writer/
BitWriter.cpp 37 int LLVMWriteBitcodeToFileHandle(LLVMModuleRef M, int FileHandle) {
38 return LLVMWriteBitcodeToFD(M, FileHandle, true, false);
  /frameworks/compile/libbcc/include/bcc/Support/
MemoryFactory.h 20 #include <mcld/Support/FileHandle.h>
41 { return mcld::MemoryAreaFactory::create(pFD, mcld::FileHandle::Unknown); }
  /frameworks/compile/mclinker/include/mcld/
Linker.h 28 class FileHandle;
  /frameworks/compile/mclinker/lib/MC/
FileAction.cpp 45 FileHandle::OpenMode pMode,
46 FileHandle::Permission pPerm)
  /frameworks/compile/mclinker/lib/Core/
Linker.cpp 16 #include <mcld/Support/FileHandle.h>
227 FileHandle file;
228 FileHandle::Permission perm = 0755;
230 FileHandle::ReadWrite | FileHandle::Truncate | FileHandle::Create,
247 FileHandle file;
  /external/giflib/
gif_lib_private.h 34 GifWord FileState, FileHandle, /* Where all this data goes to! */

Completed in 1717 milliseconds

1 2