Home
last modified time | relevance | path

Searched refs:VM_PROT_ALLEXEC (Results 1 – 3 of 3) sorted by relevance

/xnu-10063.101.15/osfmk/mach/
H A Dvm_prot.h197 #define VM_PROT_ALLEXEC (VM_PROT_EXECUTE | VM_PROT_UEXEC) macro
199 #define VM_PROT_ALLEXEC (VM_PROT_EXECUTE) macro
/xnu-10063.101.15/osfmk/vm/
H A Dvm_map.c2638 int reject_prot = (needs_copy ? VM_PROT_ALLEXEC : (VM_PROT_WRITE | VM_PROT_ALLEXEC)); in vm_map_enter()
3182 int reject_prot = (needs_copy ? VM_PROT_ALLEXEC : (VM_PROT_WRITE | VM_PROT_ALLEXEC)); in vm_map_enter()
3818 (entry->protection & VM_PROT_ALLEXEC) && in vm_map_enter_fourk()
4173 (cur_protection & ~(VM_PROT_ALL | VM_PROT_ALLEXEC)) || in vm_map_enter_mem_object_helper()
4174 (max_protection & ~(VM_PROT_ALL | VM_PROT_ALLEXEC)) || in vm_map_enter_mem_object_helper()
5108 (cur_protection & ~(VM_PROT_ALL | VM_PROT_ALLEXEC)) || in vm_map_enter_mem_object_control()
5109 (max_protection & ~(VM_PROT_ALL | VM_PROT_ALLEXEC)) || in vm_map_enter_mem_object_control()
5975 if ((new_prot & VM_PROT_ALLEXEC) && in vm_map_protect()
6015 max_prot = new_prot & (VM_PROT_ALL | VM_PROT_ALLEXEC); in vm_map_protect()
6090 if (set_max && (new_prot & VM_PROT_ALLEXEC) && !vm_map_cs_enforcement(map)) { in vm_map_protect()
[all …]
H A Dmemory_object.c325 if ((prot & ~(VM_PROT_ALL | VM_PROT_ALLEXEC)) != 0 && prot != VM_PROT_NO_CHANGE) { in memory_object_lock_request()