Searched refs:mmap (Results 1 – 10 of 10) sorted by relevance
/arkcompiler/runtime_core/platforms/unix/libpandabase/ |
D | mem.cpp | 45 void *result = mmap(hint, map_size, prot, flags, file.GetFd(), map_offset); in MapFile() 60 void *result = mmap(nullptr, size, PROT_EXEC | PROT_WRITE, MAP_SHARED | MAP_ANONYMOUS, -1, 0); in MapExecuted() 148 void *result = mmap(nullptr, size, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); in MapRWAnonymousRaw() 206 mmap(mem, size, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS | MAP_FIXED, -1, 0); in MapRWAnonymousFixedRaw()
|
/arkcompiler/runtime_core/platforms/windows/libpandabase/ |
D | mem.cpp | 100 void *mmap([[maybe_unused]] void *addr, size_t len, uint32_t prot, int flags, int fildes, off_t off) in mmap() function 164 void *result = mmap(hint, map_size, prot, flags, file.GetFd(), map_offset); in MapFile() 177 …void *result = mmap(nullptr, size, MMAP_PROT_EXEC | MMAP_PROT_WRITE, MMAP_FLAG_SHARED | MMAP_FLAG_… in MapExecuted() 228 …mmap(nullptr, size, MMAP_PROT_READ | MMAP_PROT_WRITE, MMAP_FLAG_PRIVATE | MMAP_FLAG_ANONYMOUS, -1,… in MapRWAnonymousRaw()
|
D | windows_mem.h | 31 void *mmap([[maybe_unused]] void *addr, size_t len, uint32_t prot, int flags, int fildes, off_t off…
|
/arkcompiler/runtime_core/libpandabase/tests/ |
D | mmap_fixed_test.cpp | 47 mmap(ToVoidPtr(cur_addr), MMAP_ALLOC_SIZE, MMAP_PROT_READ | MMAP_PROT_WRITE, in TEST_F()
|
/arkcompiler/ets_runtime/ecmascript/platform/unix/ |
D | map.cpp | 32 void *result = mmap(nullptr, allocSize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); in PageMap()
|
D | file.cpp | 92 void *addr = mmap(nullptr, size, prot, MAP_PRIVATE, fd, offset); in FileMap()
|
/arkcompiler/runtime_core/ldscripts/ |
D | panda.ld | 8 ASAN reserves (mmap) addresses for its own needs,
|
/arkcompiler/runtime_core/cmake/ |
D | PandaCmakeFunctions.cmake | 16 # Note: AddressSanitizer reserves (mmap) addresses for its own needs,
|
/arkcompiler/runtime_core/docs/ |
D | memory-management.md | 297 - avoid holding locks during memory related system calls(mmap etc.)
|
/arkcompiler/toolchain/build/third_party_gn/musl/ |
D | musl_src.gni | 841 "src/mman/mmap.c",
|