Home
last modified time | relevance | path

Searched refs:should_fault (Results 1 – 2 of 2) sorted by relevance

/xnu-8019.80.24/osfmk/kern/
H A Dkern_stackshot.c1143 boolean_t should_fault = (trace_flags & STACKSHOT_ENABLE_UUID_FAULTING); in kcdata_record_uuid_info() local
1164 sizeof(struct user64_dyld_all_image_infos), should_fault, &kdp_fault_results)) { in kcdata_record_uuid_info()
1175 sizeof(struct user32_dyld_all_image_infos), should_fault, &kdp_fault_results)) { in kcdata_record_uuid_info()
1219 …if (!kdp_copyin(task->map, uuid_info_addr, (void *)out_addr, uuid_info_array_size, should_fault, &… in kcdata_record_uuid_info()
/xnu-8019.80.24/osfmk/arm/
H A Dpmap.c12593 pmap_test_access(pmap_t pmap, vm_map_address_t va, bool should_fault, bool is_write) argument
12640 bool retval = (took_fault == should_fault);
12645 pmap_test_read(pmap_t pmap, vm_map_address_t va, bool should_fault) argument
12647 bool retval = pmap_test_access(pmap, va, should_fault, false);
12652 __func__, should_fault ? "did not fault" : "faulted",
12653 pmap, (void*)va, (unsigned)should_fault);
12660 pmap_test_write(pmap_t pmap, vm_map_address_t va, bool should_fault) argument
12662 bool retval = pmap_test_access(pmap, va, should_fault, true);
12667 __func__, should_fault ? "did not fault" : "faulted",
12668 pmap, (void*)va, (unsigned)should_fault);