Home
last modified time | relevance | path

Searched refs:pStartOffset (Results 1 – 4 of 4) sorted by relevance

/frameworks/compile/mclinker/include/mcld/Support/
DFileHandle.h91 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/
DFileHandle.cpp164 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/
DFileSystem.inc158 bool FileHandle::mmap(void*& pMemBuffer, size_t pStartOffset, size_t pLength)
162 return read(pMemBuffer, pStartOffset, pLength);
/frameworks/compile/mclinker/lib/Support/Unix/
DFileSystem.inc158 bool FileHandle::mmap(void*& pMemBuffer, size_t pStartOffset, size_t pLength)
190 pMemBuffer = ::mmap(NULL, pLength, prot, flag, m_Handler, pStartOffset);