Searched refs:mremap (Results 1 - 18 of 18) sorted by relevance

/external/valgrind/main/none/tests/linux/
H A Dmremap.stderr.exp2 mremap(grow, nomove, constrained): Cannot allocate memory
H A Dmremap.c35 np = mremap(p, 1024*1024, 256*1024, 0); /* shrink, fixed */
37 perror("mremap(shrink, fixed)");
45 np = mremap(p, 1024*1024, 256*1024, MREMAP_MAYMOVE); /* shrink, maymove */
47 perror("mremap(shrink, maymove)");
55 np = mremap(p, 1024*1024, 2048*1024, 0); /* grow, fixed */
57 perror("mremap(grow, fixed)");
65 np = mremap(p, 1024*1024, 2048*1024, MREMAP_MAYMOVE); /* grow, maymove */
67 perror("mremap(grow, maymove)");
76 np = mremap(p, 512*1024, 1024*1024, 0); /* grow, nomove, constrained */
78 perror("mremap(gro
[all...]
H A Dmremap3.c31 void *a2 = mremap(area, 4096, 40960, 0);
33 perror("mremap");
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dmalloc_hook_mmap_linux.h171 void* mremap(void* old_addr, size_t old_size, size_t new_size,
220 extern "C" void* mremap(void* old_addr, size_t old_size, size_t new_size,
H A Dmalloc_hook.cc35 // Disable the glibc prototype of mremap(), as older versions of the
39 # define mremap glibc_mremap macro
41 # undef mremap macro
693 // On systems where we know how, we override mmap/munmap/mremap/sbrk
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dmalloc_hook_mmap_linux.h147 void* mremap(void* old_addr, size_t old_size, size_t new_size,
192 extern "C" void* mremap(void* old_addr, size_t old_size, size_t new_size,
H A Dmalloc_hook.cc35 // Disable the glibc prototype of mremap(), as older versions of the
39 # define mremap glibc_mremap macro
41 # undef mremap macro
693 // On systems where we know how, we override mmap/munmap/mremap/sbrk
/external/chromium_org/tools/android/heap_profiler/
H A Dheap_profiler_hooks_android.c56 real_mremap = (mremap_t) dlsym(RTLD_NEXT, "mremap");
133 HEAP_PROFILER_EXPORT void* mremap( function
/external/oprofile/libdb/
H A Ddb_manage.c84 new_map = mremap(data->base_memory,
/external/chromium_org/components/nacl/loader/nonsfi/
H A Dnonsfi_sandbox_sigsys_unittest.cc285 RESTRICT_SYSCALL_DEATH_TEST(mremap);
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dtcmalloc_unittest.cc1168 p1 = mremap(p1, size, size/2, 0);
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dtcmalloc_unittest.cc1168 p1 = mremap(p1, size, size/2, 0);
/external/valgrind/main/memcheck/tests/x86-linux/
H A Dscalar.stderr.exp1915 Syscall param mremap(old_addr) contains uninitialised byte(s)
1919 Syscall param mremap(old_size) contains uninitialised byte(s)
1923 Syscall param mremap(new_size) contains uninitialised byte(s)
1927 Syscall param mremap(flags) contains uninitialised byte(s)
1931 Syscall param mremap(new_addr) contains uninitialised byte(s)
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dlinux_syscall_support.h2244 LSS_INLINE void *LSS_NAME(mremap)(void *old_address, size_t old_size, function
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dlinux_syscall_support.h2148 LSS_INLINE void *LSS_NAME(mremap)(void *old_address, size_t old_size, function
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_malloc.c365 If true realloc() uses mremap() to re-allocate large blocks and
1400 #define CALL_MREMAP(addr, osz, nsz, mv) mremap((addr), (osz), (nsz), (mv))
3621 /* Prefer mremap, fall back to munmap */
5034 * Add linux mremap support code from HJ Liu
/external/sqlite/dist/orig/
H A Dsqlite3.c24717 { "mremap", (sqlite3_syscall_ptr)mremap, 0 },
24719 { "mremap", (sqlite3_syscall_ptr)0, 0 },
[all...]
/external/sqlite/dist/
H A Dsqlite3.c24735 { "mremap", (sqlite3_syscall_ptr)mremap, 0 },
24737 { "mremap", (sqlite3_syscall_ptr)0, 0 },
[all...]

Completed in 3248 milliseconds