/third_party/rust/crates/nix/test/sys/ |
D | test_mman.rs | 26 use nix::sys::mman::{mremap, MRemapFlags}; in test_mremap_grow() 49 let mem = mremap( in test_mremap_grow() 58 let mem = mremap( in test_mremap_grow() 84 use nix::sys::mman::{mremap, MRemapFlags}; in test_mremap_shrink() 106 let mem = mremap( in test_mremap_shrink()
|
/third_party/musl/libc-test/src/functionalext/supplement/mman/ |
D | mremap.c | 48 void *map_new = mremap(map, TEST_M_SIZE, TEST_M_NEW_SIZE, MREMAP_MAYMOVE); in mremap_0100() 81 void *map_new = mremap(map, TEST_M_SIZE, PTRDIFF_MAX, MREMAP_MAYMOVE); in mremap_0200()
|
D | test_src_functionalext_supplement_mman.gni | 18 "mremap",
|
/third_party/rust/crates/rustix/src/backend/libc/mm/ |
D | syscalls.rs | 134 pub(crate) unsafe fn mremap( in mremap() function 140 let res = c::mremap(old_address, old_size, new_size, flags.bits()); in mremap() 161 let res = c::mremap( in mremap_fixed()
|
/third_party/rust/crates/rustix/src/mm/ |
D | mmap.rs | 106 pub unsafe fn mremap( in mremap() function 112 backend::mm::syscalls::mremap(old_address, old_size, new_size, flags) in mremap()
|
D | mod.rs | 18 pub use mmap::{mremap, mremap_fixed, MremapFlags};
|
/third_party/musl/src/mman/ |
D | mremap.c | 32 weak_alias(__mremap, mremap);
|
/third_party/musl/src/thread/ |
D | pthread_getattr_np.c | 19 while (mremap(p-l-PAGE_SIZE, PAGE_SIZE, 2*PAGE_SIZE, 0)==MAP_FAILED && errno==ENOMEM) in pthread_getattr_np()
|
/third_party/ltp/testcases/kernel/syscalls/mremap/ |
D | mremap02.c | 111 addr = mremap(addr, memsize, newsize, MREMAP_MAYMOVE); in main()
|
D | mremap03.c | 113 addr = mremap(bad_addr, memsize, newsize, MREMAP_MAYMOVE); in main()
|
D | mremap04.c | 124 addr = mremap(shmaddr, memsize, newsize, 0); in main()
|
D | mremap01.c | 113 addr = mremap(addr, memsize, newsize, MREMAP_MAYMOVE); in main()
|
/third_party/ltp/testcases/kernel/syscalls/ |
D | Makefile | 27 mq_timedsend mq_unlink mmap mremap open openat profil ptrace quotactl \
|
/third_party/musl/src/malloc/mallocng/ |
D | glue.h | 38 #define mremap __mremap macro
|
D | realloc.c | 34 mremap(g->mem, g->maplen*4096UL, needed, MREMAP_MAYMOVE); in realloc()
|
/third_party/ltp/testcases/kernel/mem/thp/ |
D | thp02.c | 73 ret = mremap(old_addr, remap_size, remap_size, in do_child()
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
D | mman.h | 128 void *mremap (void *, size_t, size_t, int, ...);
|
/third_party/musl/include/sys/ |
D | mman.h | 130 void *mremap (void *, size_t, size_t, int, ...);
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
D | mman.h | 128 void *mremap (void *, size_t, size_t, int, ...);
|
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/ |
D | mman.h | 124 void *mremap (void *, size_t, size_t, int, ...);
|
/third_party/ltp/testcases/kernel/mem/vma/ |
D | vma03.c | 102 remap = mremap(map, pgsz, 2 * pgsz, 0); in main()
|
/third_party/musl/ndk_musl_include/sys/ |
D | mman.h | 128 void *mremap (void *, size_t, size_t, int, ...);
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
D | mman.h | 128 void *mremap (void *, size_t, size_t, int, ...);
|
/third_party/musl/porting/liteos_a/kernel/include/sys/ |
D | mman.h | 133 void *mremap (void *, size_t, size_t, int, ...);
|
/third_party/rust/crates/nix/src/sys/ |
D | mman.rs | 449 pub unsafe fn mremap( in mremap() function 457 let ret = libc::mremap( in mremap() 465 let ret = libc::mremap( in mremap()
|