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

  /bionic/libc/arch-arm/syscalls/
munmap.S 6 ENTRY(munmap) function
15 END(munmap)
  /bionic/libc/arch-mips/syscalls/
munmap.S 4 .globl munmap
6 .ent munmap
8 munmap: label
22 .end munmap
  /bionic/libc/arch-x86/syscalls/
munmap.S 6 ENTRY(munmap) function
24 END(munmap)
  /frameworks/rs/driver/linkloader/lib/
mmanWindows.cpp 25 int munmap(void *, size_t) { function
  /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);
Os.java 88 public void munmap(long address, long byteCount) throws ErrnoException; method in interface:Os
Posix.java 90 public native void munmap(long address, long byteCount) throws ErrnoException; method in class:Posix
ForwardingOs.java 96 public void munmap(long address, long byteCount) throws ErrnoException { os.munmap(address, byteCount); } method in class:ForwardingOs
  /hardware/msm7k/libgralloc-qsd8k/
gralloc.cpp 99 virtual int munmap(void* start, size_t length) { function in class:PmemAllocatorDepsDeviceImpl
100 return ::munmap(start, length);
  /frameworks/compile/mclinker/lib/Support/
FileHandle.cpp 267 bool FileHandle::munmap(void* pMemBuffer, size_t pLength) function in class:FileHandle
274 if (-1 == ::munmap(pMemBuffer, pLength)) {
  /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 1040 milliseconds