prot 119 opal/mca/memory/patcher/memory_patcher_component.c void *__mmap (void *start, size_t length, int prot, int flags, int fd, off_t offset); prot 124 opal/mca/memory/patcher/memory_patcher_component.c static void *intercept_mmap(void *start, size_t length, int prot, int flags, int fd, off_t offset) prot 129 opal/mca/memory/patcher/memory_patcher_component.c if (prot == PROT_NONE) { prot 136 opal/mca/memory/patcher/memory_patcher_component.c result = __mmap (start, length, prot, flags, fd, offset); prot 138 opal/mca/memory/patcher/memory_patcher_component.c result = (void*)(intptr_t) memory_patcher_syscall(SYS_mmap, start, length, prot, flags, fd, offset); prot 146 opal/mca/memory/patcher/memory_patcher_component.c result = original_mmap (start, length, prot, flags, fd, offset); prot 121 opal/mca/patcher/base/patcher_base_patch.c static void ModifyMemoryProtection (uintptr_t addr, size_t length, int prot) prot 132 opal/mca/patcher/base/patcher_base_patch.c if (mprotect((void *)base, page_size, prot)) prot 137 opal/mca/patcher/base/patcher_base_patch.c if (mprotect((void *) base, length, prot)) {