Searched refs:munmap (Results 1 - 7 of 7) sorted by relevance

/libcore/luni/src/main/java/libcore/io/
H A DMemoryMappedFile.java59 * Unmaps this memory-mapped file using munmap(2). This is a no-op if close has already been
68 Libcore.os.munmap(address, size);
H A DForwardingOs.java114 public void munmap(long address, long byteCount) throws ErrnoException { os.munmap(address, byteCount); } method in class:ForwardingOs
H A DOs.java106 public void munmap(long address, long byteCount) throws ErrnoException; method in interface:Os
H A DPosix.java108 public native void munmap(long address, long byteCount) throws ErrnoException; method in class:Posix
/libcore/luni/src/main/java/java/nio/
H A DMemoryBlock.java35 * Handles calling munmap(2) on a memory-mapped region.
45 Libcore.os.munmap(address, size);
48 // a state where munmap(2) could return an error.
/libcore/luni/src/main/java/android/system/
H A DOs.java293 * See <a href="http://man7.org/linux/man-pages/man2/munmap.2.html">munmap(2)</a>.
295 public static void munmap(long address, long byteCount) throws ErrnoException { Libcore.os.munmap(address, byteCount); } method in class:Os
/libcore/luni/src/main/native/
H A Dlibcore_io_Posix.cpp1027 throwIfMinusOne(env, "munmap", TEMP_FAILURE_RETRY(munmap(ptr, byteCount)));
1596 NATIVE_METHOD(Posix, munmap, "(JJ)V"),

Completed in 391 milliseconds