Searched defs:mmap (Results 1 - 4 of 4) sorted by relevance

/libcore/luni/src/main/java/android/system/
H A DOs.java336 * See <a href="http://man7.org/linux/man-pages/man2/mmap.2.html">mmap(2)</a>.
338 public static long mmap(long address, long byteCount, int prot, int flags, FileDescriptor fd, long offset) throws ErrnoException { return Libcore.os.mmap(address, byteCount, prot, flags, fd, offset); } method in class:Os
/libcore/luni/src/main/java/libcore/io/
H A DForwardingOs.java133 public long mmap(long address, long byteCount, int prot, int flags, FileDescriptor fd, long offset) throws ErrnoException { return os.mmap(address, byteCount, prot, flags, fd, offset); } method in class:ForwardingOs
H A DLinux.java124 public native long mmap(long address, long byteCount, int prot, int flags, FileDescriptor fd, long offset) throws ErrnoException; method in class:Linux
H A DOs.java119 public long mmap(long address, long byteCount, int prot, int flags, FileDescriptor fd, long offset) throws ErrnoException; method in interface:Os

Completed in 99 milliseconds