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

/libcore/luni/src/main/java/java/nio/
H A DMemoryBlock.java95 public static MemoryBlock mmap(FileDescriptor fd, long offset, long size, MapMode mapMode) throws IOException { method in class:MemoryBlock
97 // You can't mmap(2) a zero-length region, but Java allows it.
100 // Check just those errors mmap(2) won't detect.
117 int address = (int) Libcore.os.mmap(0L, size, prot, flags, fd, offset);
/libcore/luni/src/main/java/libcore/io/
H A DForwardingOs.java89 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 DOs.java81 public long mmap(long address, long byteCount, int prot, int flags, FileDescriptor fd, long offset) throws ErrnoException; method in interface:Os
H A DPosix.java83 public native long mmap(long address, long byteCount, int prot, int flags, FileDescriptor fd, long offset) throws ErrnoException; method in class:Posix

Completed in 59 milliseconds