Searched refs:internal_mprotect (Results 1 – 8 of 8) sorted by relevance
/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_posix.h | 44 int internal_mprotect(void *addr, uptr length, int prot);
|
H A D | sanitizer_posix.cpp | 152 return 0 == internal_mprotect((void*)addr, size, PROT_NONE); in MprotectNoAccess() 156 return 0 == internal_mprotect((void *)addr, size, PROT_READ); in MprotectReadOnly()
|
H A D | sanitizer_netbsd.cpp | 114 int internal_mprotect(void *addr, uptr length, int prot) { in internal_mprotect() function
|
H A D | sanitizer_mac.cpp | 153 int internal_mprotect(void *addr, uptr length, int prot) { in internal_mprotect() function
|
H A D | sanitizer_linux.cpp | 230 int internal_mprotect(void *addr, uptr length, int prot) { in internal_mprotect() function
|
H A D | sanitizer_common_interceptors.inc | 7603 return (int)internal_mprotect(addr, sz, prot);
|
/openbsd/gnu/llvm/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 | 523 CHECK_EQ(0, internal_mprotect(dead_thread_state, sizeof(ThreadState), in cur_thread()
|