Home
last modified time | relevance | path

Searched refs:prot_contains_all (Results 1 – 4 of 4) sorted by relevance

/xnu-12377.61.12/tests/vm/
H A Dconfigurator_vm_behavior_set.c52 prot_contains_all(checker->protection, VM_PROT_READ | VM_PROT_WRITE)) { in write_one_memory()
366 if (!prot_contains_all(checker->protection, VM_PROT_WRITE)) { in vm_behavior_zero_once()
416 if (prot_contains_all(checker->protection, VM_PROT_READ | VM_PROT_WRITE)) { in vm_behavior_zero()
H A Dconfigurator_vm_wire.c167 if (prot_contains_all(checker->protection, VM_PROT_EXECUTE)) { in checker_perform_failed_vm_wire()
182 if (!prot_contains_all(checker->protection, wire_prot)) { in checker_perform_failed_vm_wire()
/xnu-12377.61.12/tests/vm/configurator/
H A Dvm_configurator.c306 assert(prot_contains_all(VM_PROT_ALL /* rwx */, prot)); in name_for_prot()
2335 T_QUIET; T_ASSERT_TRUE(prot_contains_all(VM_PROT_READ | VM_PROT_WRITE, tmpl->protection), in create_vm_state()
2338 T_QUIET; T_ASSERT_TRUE(prot_contains_all(VM_PROT_ALL, tmpl->max_protection), in create_vm_state()
2341 T_QUIET; T_ASSERT_TRUE(prot_contains_all(tmpl->max_protection, tmpl->protection), in create_vm_state()
3436 if (prot_contains_all(checker->protection, VM_PROT_READ | VM_PROT_WRITE)) { in verify_vm_faultability_nested()
3890 if (prot_contains_all(required_prot, VM_PROT_WRITE)) { in checker_fault_for_prot_not_cow()
3893 if (!prot_contains_all(checker->protection, required_prot)) { in checker_fault_for_prot_not_cow()
H A Dvm_configurator.h1396 prot_contains_all(vm_prot_t container, vm_prot_t values) in prot_contains_all() function