HomeSort by relevance Sort by last modified time
    Searched refs:munmap (Results 201 - 225 of 845) sorted by null

1 2 3 4 5 6 7 891011>>

  /device/linaro/hikey/gralloc960/
gralloc_buffer_priv.h 130 if ( munmap( hnd->attr_base, PAGE_SIZE ) == 0 )
gralloc_module_ion.cpp 101 if ( munmap( base,size ) < 0 )
103 AERR("Could not munmap base:%p size:%zd '%s'", base, size, strerror(errno));
  /external/compiler-rt/lib/profile/
WindowsMMap.c 84 void munmap(void *addr, size_t length) function
  /external/libchrome/base/files/
memory_mapped_file_posix.cc 106 munmap(data_, length_);
  /external/libtextclassifier/util/memory/
mmap.cc 127 if (munmap(mmap_handle.unmap_addr(), mmap_handle.num_bytes()) != 0) {
129 TC_LOG(ERROR) << "Error during Unmap / munmap: " << last_error;
  /external/ltp/testcases/kernel/mem/mmapstress/
mmap-corruption01.c 165 munmap(mem, kMemSize);
  /external/ltp/testcases/kernel/syscalls/mincore/
mincore02.c 54 munmap(addr, page_size * num_pages);
  /external/ltp/testcases/kernel/syscalls/mmap/
mmap04.c 115 if (munmap(addr, page_sz) != 0) {
mmap08.c 81 if (munmap(addr, page_sz) != 0) {
82 tst_brkm(TBROK, cleanup, "munmap() failed");
mmap13.c 92 if (munmap(addr, page_sz * 2) != 0)
  /external/ltp/testcases/kernel/syscalls/mremap/
mremap01.c 230 if (munmap(addr, newsize) != 0)
231 tst_brkm(TBROK | TERRNO, NULL, "munmap failed");
  /external/ltp/testcases/kernel/syscalls/msync/
msync01.c 195 if (munmap(addr, page_sz) == -1)
196 tst_resm(TBROK | TERRNO, "munmap failed");
msync02.c 149 if (munmap(addr, page_sz) == -1)
150 tst_resm(TBROK | TERRNO, "munmap failed");
  /external/ltp/testcases/kernel/syscalls/munlock/
munlock02.c 174 munmap(address, 4 * getpagesize());
  /external/ltp/testcases/kernel/syscalls/munmap/
munmap01.c 24 * Verify that, munmap call will succeed to unmap a mapped file or
26 * and after successful completion of munmap, the unmapped region is no
30 * munmap call should succeed to unmap a mapped file or anonymous shared
106 * Call munmap to unmap the mapped region of the
109 TEST(munmap(addr, map_len));
111 /* Check for the return value of munmap() */
113 tst_resm(TFAIL, "munmap() fails, errno=%d : %s",
225 tst_resm(TPASS, "Functionality of munmap() successful");
munmap02.c 24 * Verify that, munmap call will succeed to unmap a mapped file or
30 * munmap call should succeed to unmap a part or all of mapped region of a
110 * Call munmap to unmap the part of the mapped region of the
114 TEST(munmap(addr, map_len));
116 /* Check for the return value of munmap() */
118 tst_resm(TFAIL, "munmap() fails, errno=%d : %s",
238 tst_resm(TPASS, "Functionality of munmap() successful");
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mmap/
11-5.c 94 munmap(pa, len);
11-6.c 94 munmap(pa, len);
24-2.c 104 munmap(pa, len);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/munmap/
1-1.c 7 * The munmap() function shall remove any mappings for those
36 #define TNAME "munmap/1-1.c"
104 if (munmap(pa, len) == -1) {
105 printf("Test FAILED: " TNAME " Error at munmap: %s\n",
1-2.c 7 * The munmap() function shall remove any mappings for those
36 #define TNAME "munmap/1-2.c"
103 munmap(pa, len);
4-1.c 15 * 3. munmap the mapped memory;
36 #define TNAME "munmap/4-1.c"
93 munmap(pa, size);
  /external/mesa3d/src/intel/vulkan/
anv_gem_stubs.c 68 /* This is just a wrapper around munmap, but it also notifies valgrind that
74 munmap(p, size);
  /external/strace/tests/
mmap.c 93 if (munmap(p, length3))
94 perror_msg_and_fail("munmap");
95 printf("munmap(%p, %lu) = 0\n", p, length3);
  /external/strace/tests-m32/
mmap.c 93 if (munmap(p, length3))
94 perror_msg_and_fail("munmap");
95 printf("munmap(%p, %lu) = 0\n", p, length3);

Completed in 338 milliseconds

1 2 3 4 5 6 7 891011>>