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

1 2 3

  /frameworks/compile/mclinker/lib/Support/
FileHandle.cpp 1 //===- FileHandle.cpp -----------------------------------------------------===//
10 #include <mcld/Support/FileHandle.h>
26 // FileHandle
28 FileHandle::FileHandle()
36 FileHandle::~FileHandle()
42 inline static int oflag(FileHandle::OpenMode pMode)
45 if (FileHandle::Unknown == pMode)
48 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>
53 FileHandle::OpenMode pMode,
54 FileHandle::Permission pPermission)
  /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/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>
33 * Like FileHandle, HandleToArea should neither throw exception nor call
41 FileHandle* handle;
59 Result(FileHandle* pHandle, MemoryArea* pArea)
63 FileHandle* handle;
69 ConstResult(const FileHandle* pHandle, const MemoryArea* pArea)
73 const FileHandle* handle;
78 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 -------------------------------------------------------===//
21 /** \class FileHandle
22 * \brief FileHandle class provides an interface for reading from and writing
25 * Operators of FileHandle should neither throw exceptions nor call expressive
28 class FileHandle
72 FileHandle();
74 ~FileHandle();
  /external/chromium_org/third_party/WebKit/public/platform/
WebFileUtilities.h 49 typedef HANDLE FileHandle;
51 typedef int FileHandle;
  /external/chromium_org/third_party/jemalloc/chromium/
apply-ed-patches.pl 41 use FileHandle;
59 my $pfh = new FileHandle($source_patch, 'r');
77 $fh = new FileHandle($patch_file, 'w');
  /external/chromium_org/third_party/jemalloc/vendor/
apply-ed-patches.pl 41 use FileHandle;
59 my $pfh = new FileHandle($source_patch, 'r');
77 $fh = new FileHandle($patch_file, 'w');
  /external/llvm/lib/Bitcode/Writer/
BitWriter.cpp 38 int LLVMWriteBitcodeToFileHandle(LLVMModuleRef M, int FileHandle) {
39 return LLVMWriteBitcodeToFD(M, FileHandle, true, false);
  /external/chromium_org/content/child/
database_util.h 19 static WebKit::Platform::FileHandle DatabaseOpenFile(
  /external/chromium_org/content/common/
handle_enumerator_win.h 17 FileHandle,
  /frameworks/compile/mclinker/lib/Core/
Linker.cpp 16 #include <mcld/Support/FileHandle.h>
250 FileHandle file;
251 FileHandle::Permission perm = FileHandle::Permission(0x755);
253 FileHandle::ReadWrite | FileHandle::Truncate | FileHandle::Create,
270 FileHandle file;
  /frameworks/compile/mclinker/lib/MC/
FileAction.cpp 45 FileHandle::OpenMode pMode,
46 FileHandle::Permission pPerm)
  /external/giflib/
gif_lib_private.h 33 GifWord FileState, FileHandle, /* Where all this data goes to! */

Completed in 271 milliseconds

1 2 3