Searched refs:internal_mprotect (Results 1 – 9 of 9) sorted by relevance
| /freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_posix.cpp | 150 return 0 == internal_mprotect((void*)addr, size, PROT_NONE); in MprotectNoAccess() 154 return 0 == internal_mprotect((void *)addr, size, PROT_READ); in MprotectReadOnly() 158 return 0 == internal_mprotect((void *)addr, size, PROT_READ | PROT_WRITE); in MprotectReadWrite()
|
| H A D | sanitizer_posix.h | 47 int internal_mprotect(void *addr, uptr length, int prot);
|
| H A D | sanitizer_netbsd.cpp | 114 int internal_mprotect(void *addr, uptr length, int prot) { in internal_mprotect() function
|
| H A D | sanitizer_haiku.cpp | 116 int internal_mprotect(void *addr, uptr length, int prot) { in internal_mprotect() function
|
| H A D | sanitizer_mac.cpp | 146 int internal_mprotect(void *addr, uptr length, int prot) { in internal_mprotect() function
|
| H A D | sanitizer_linux.cpp | 294 int internal_mprotect(void *addr, uptr length, int prot) { in internal_mprotect() function
|
| H A D | sanitizer_common_interceptors.inc | 7671 return (int)internal_mprotect(addr, sz, prot);
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_platform_mac.cpp | 82 res = internal_mprotect(dts, sizeof(ThreadState), PROT_READ); // immutable in InitializeThreadStateStorage()
|
| H A D | tsan_platform_linux.cpp | 650 CHECK_EQ(0, internal_mprotect(dead_thread_state, sizeof(ThreadState), in cur_thread()
|