Searched refs:pStartOffset (Results 1 – 4 of 4) sorted by relevance
/frameworks/compile/mclinker/include/mcld/Support/ |
D | FileHandle.h | 91 bool read(void* pMemBuffer, size_t pStartOffset, size_t pLength); 93 bool write(const void* pMemBuffer, size_t pStartOffset, size_t pLength); 95 bool mmap(void*& pMemBuffer, size_t pStartOffset, size_t pLength);
|
/frameworks/compile/mclinker/lib/Support/ |
D | FileHandle.cpp | 164 bool FileHandle::read(void* pMemBuffer, size_t pStartOffset, size_t pLength) in read() argument 177 pStartOffset); in read() 187 bool FileHandle::write(const void* pMemBuffer, size_t pStartOffset, size_t pLength) in write() argument 201 pStartOffset); in write()
|
/frameworks/compile/mclinker/lib/Support/Windows/ |
D | FileSystem.inc | 158 bool FileHandle::mmap(void*& pMemBuffer, size_t pStartOffset, size_t pLength) 162 return read(pMemBuffer, pStartOffset, pLength);
|
/frameworks/compile/mclinker/lib/Support/Unix/ |
D | FileSystem.inc | 158 bool FileHandle::mmap(void*& pMemBuffer, size_t pStartOffset, size_t pLength) 190 pMemBuffer = ::mmap(NULL, pLength, prot, flag, m_Handler, pStartOffset);
|