Searched refs:fd_off (Results 1 – 4 of 4) sorted by relevance
/art/libartbase/base/ |
D | mem_map_unix.cc | 27 void* MemMap::TargetMMap(void* start, size_t len, int prot, int flags, int fd, off_t fd_off) { in TargetMMap() argument 28 return mmap(start, len, prot, flags, fd, fd_off); in TargetMMap()
|
D | mem_map_fuchsia.cc | 61 void* MemMap::TargetMMap(void* start, size_t len, int prot, int flags, int fd, off_t fd_off) { in TargetMMap() argument 73 return mmap(start, len, prot, flags, fd, fd_off); in TargetMMap() 118 status = zx_vmar_map(fuchsia_lowmem_vmar, vmaroffset, vmo, fd_off, len, vmarflags, &mem); in TargetMMap() 120 status = zx_vmar_map(zx_vmar_root_self(), vmaroffset, vmo, fd_off, len, vmarflags, &mem); in TargetMMap()
|
D | mem_map_windows.cc | 45 void* MemMap::TargetMMap(void* start, size_t len, int prot, int flags, int fd, off_t fd_off) { in TargetMMap() argument 47 size_t padding = fd_off % allocation_granularity; in TargetMMap() 48 off_t file_offset = fd_off - padding; in TargetMMap()
|
D | mem_map.h | 408 static void* TargetMMap(void* start, size_t len, int prot, int flags, int fd, off_t fd_off);
|