/third_party/musl/porting/uniproton/kernel/include/sys/ |
H A D | mman.h | 128 void *mremap (void *, size_t, size_t, int, ...);
|
/third_party/musl/porting/liteos_a/kernel/include/sys/ |
H A D | mman.h | 133 void *mremap (void *, size_t, size_t, int, ...);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
H A D | mman.h | 128 void *mremap (void *, size_t, size_t, int, ...);
|
/third_party/ltp/testcases/kernel/syscalls/mmap/ |
H A D | mmap16.c | 61 * In case mremap() may fail because that memory area can not be in do_child() 76 addr = mremap(addr, FS_BLOCKSIZE, 2 * page_size, 0); in do_child() 78 tst_brk(TBROK | TERRNO, "mremap failed unexpectedly"); in do_child()
|
/third_party/musl/include/sys/ |
H A D | mman.h | 130 void *mremap (void *, size_t, size_t, int, ...);
|
/third_party/elfutils/libelf/ |
H A D | elf_update.c | 108 if (mremap (elf->map_address, elf->maximum_size, in write_file()
|
/third_party/node/deps/v8/src/base/platform/ |
H A D | platform-linux.cc | 25 #include <sys/mman.h> // mmap & munmap & mremap 149 mremap(old_address, 0, size, MREMAP_FIXED | MREMAP_MAYMOVE, new_address); in RemapShared()
|
/third_party/vixl/src/ |
H A D | code-buffer-vixl.cc | 190 mremap(buffer_, capacity_, new_capacity, MREMAP_MAYMOVE)); in Grow()
|
/third_party/ltp/testcases/kernel/syscalls/mremap/ |
H A D | mremap05.c | 104 .msg = "mremap #1", 111 .msg = "mremap #2", 138 t->ret = mremap(t->old_address, t->old_size, t->new_size, t->flags, in test_mremap()
|
/third_party/musl/Benchmark/musl/ |
H A D | libc_mman.cpp | 226 void *newAddr = mremap(oldAddr, oldLength, newLength, MREMAP_MAYMOVE); in Bm_function_Mremap()
|
/third_party/pcre2/pcre2/src/sljit/ |
H A D | sljitProtExecAllocator.c | 236 retval->executable = mremap(retval, size, NULL, size, MAP_REMAPDUP); in alloc_chunk()
|
/third_party/python/Modules/ |
H A D | mmapmodule.c | 627 "mmap: resizing not available--no mremap()"); in mmap_resize_method() 638 newmap = mremap(self->data, self->size, new_size, MREMAP_MAYMOVE); in mmap_resize_method() 641 newmap = mremap(self->data, self->size, self->data, new_size, 0); in mmap_resize_method() 643 newmap = mremap(self->data, self->size, new_size, 0); in mmap_resize_method()
|
/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/ |
H A D | mmanndk.cpp | 159 void *map_new = mremap(map, TEST_M_SIZE, TEST_M_NEW_SIZE, MREMAP_MAYMOVE);
in MreMap()
|
/third_party/musl/porting/linux/user/ldso/ |
H A D | cfi.c | 416 * the temp_shadow, and then write it back to the CFI shadow by mremap(). */ in fill_shadow_value_to_shadow() 480 uint16_t* mremap_addr = mremap(tmp_shadow_start, tmp_shadow_size, tmp_shadow_size, in fill_shadow_value_to_shadow() 484 LD_LOGE("[CFI] [%{public}s] mremap failed!\n", __FUNCTION__); in fill_shadow_value_to_shadow()
|
/third_party/musl/ldso/linux/ |
H A D | cfi.c | 476 * the temp_shadow, and then write it back to the CFI shadow by mremap(). */ in fill_shadow_value_to_shadow() 542 uint16_t* mremap_addr = mremap(tmp_shadow_start, tmp_shadow_size, tmp_shadow_size, in fill_shadow_value_to_shadow() 546 LD_LOGE("[CFI] [%{public}s] mremap failed!\n", __FUNCTION__); in fill_shadow_value_to_shadow()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/ |
H A D | symbolize_test.cc | 348 void *ret = mremap(addr, kPageSize, kPageSize, kMremapFlags, remapped); in TEST()
|
/third_party/toybox/toys/pending/ |
H A D | strace.c | 498 SC(mremap, "pzzdp"); // TODO: flags in print_enter()
|
/third_party/rust/crates/libc/src/unix/linux_like/emscripten/ |
H A D | mod.rs | 1822 pub fn mremap( in mremap() functions
|
/third_party/rust/crates/libc/src/unix/bsd/netbsdlike/netbsd/ |
H A D | mod.rs | 1630 // mremap flag 2771 pub fn mremap( in mremap() functions
|
/third_party/rust/crates/libc/src/unix/linux_like/linux/ |
H A D | mod.rs | 4065 pub fn mremap( in mremap() functions
|
/third_party/node/deps/v8/src/d8/ |
H A D | d8.cc | 255 // This is currently only available on Linux because it relies on {mremap}. 272 // We have to specify MAP_SHARED to make {mremap} below do what we want. 302 mremap(real_alloc, 0, kChunkSize, MREMAP_MAYMOVE | MREMAP_FIXED, 311 FATAL("mremap failed with error %d: %s", errno, strerror(errno));
|
/third_party/sqlite/src/ |
H A D | sqlite3.c | [all...] |