HomeSort by relevance Sort by last modified time
    Searched defs:munmap (Results 1 - 12 of 12) sorted by null

  /bionic/libc/arch-arm/syscalls/
munmap.S 5 ENTRY(munmap) function
14 END(munmap)
  /bionic/libc/arch-x86/syscalls/
munmap.S 5 .type munmap, @function
6 .globl munmap
9 munmap: label
  /bionic/libc/arch-sh/syscalls/
munmap.S 5 .type munmap, @function
6 .globl munmap
9 munmap: label
  /libcore/luni/src/main/java/libcore/io/
MemoryMappedFile.java 59 * Unmaps this memory-mapped file using munmap(2). This is a no-op if close has already been
68 Libcore.os.munmap(address, size);
ForwardingOs.java 87 public void munmap(long address, long byteCount) throws ErrnoException { os.munmap(address, byteCount); } method in class:ForwardingOs
Os.java 79 public void munmap(long address, long byteCount) throws ErrnoException; method in interface:Os
Posix.java 81 public native void munmap(long address, long byteCount) throws ErrnoException; method in class:Posix
  /hardware/msm7k/libgralloc-qsd8k/
gralloc.cpp 99 virtual int munmap(void* start, size_t length) { function in class:PmemAllocatorDepsDeviceImpl
100 return ::munmap(start, length);
  /external/libffi/src/
closures.c 171 /* Use these for mmap and munmap within dlmalloc.c. */
176 #define munmap dlmunmap macro
181 #undef munmap macro
394 munmap (ptr, length);
468 int ret = munmap (code, length);
473 return munmap (start, length);
  /hardware/msm7k/libgralloc-qsd8k/tests/
pmemalloc_test.cpp 55 virtual int munmap(void* start, size_t length) { function in class:DepsStub
  /libcore/luni/src/main/java/java/nio/
MemoryBlock.java 31 * Handles calling munmap(2) on a memory-mapped region.
41 Libcore.os.munmap(address, size);
44 // a state where munmap(2) could return an error.
  /external/e2fsprogs/intl/
loadmsgcat.c 464 # define munmap __munmap macro
1014 munmap ((void *) data, size);
    [all...]

Completed in 332 milliseconds