Searched refs:cur_phys_src (Results 1 – 4 of 4) sorted by relevance
| /xnu-11215/osfmk/kdp/ml/i386/ |
| H A D | kdp_x86_common.c | 93 addr64_t cur_phys_dst, cur_phys_src; in kdp_machine_vm_read() local 121 if (!(cur_phys_src = kdp_vtophys(src_pmap, in kdp_machine_vm_read() 139 cnt_src = PAGE_SIZE - (cur_phys_src & PAGE_MASK); in kdp_machine_vm_read() 151 if (EFAULT == ml_copy_phys(cur_phys_src, in kdp_machine_vm_read() 172 addr64_t cur_phys_dst, cur_phys_src; in kdp_machine_phys_read() local 186 cur_phys_src = (addr64_t)src; in kdp_machine_phys_read() 194 cnt_src = PAGE_SIZE - (cur_phys_src & PAGE_MASK); in kdp_machine_phys_read() 208 if (EFAULT == ml_copy_phys(cur_phys_src, in kdp_machine_phys_read() 213 cur_phys_src += cnt; in kdp_machine_phys_read() 228 addr64_t cur_phys_src, cur_phys_dst; in kdp_machine_vm_write() local [all …]
|
| /xnu-11215/osfmk/kdp/ml/arm/ |
| H A D | kdp_vm.c | 94 addr64_t cur_phys_src, cur_phys_dst; in kdp_machine_vm_read() local 130 if ((cur_phys_src = kdp_vtophys(pmap, cur_virt_src)) == 0) { in kdp_machine_vm_read() 151 pmap, cur_virt_src, cur_phys_src); in kdp_machine_vm_read() 153 bcopy_phys(cur_phys_src, cur_phys_dst, cnt); in kdp_machine_vm_read() 174 addr64_t cur_phys_src, cur_phys_dst; in kdp_machine_phys_read() local 183 cur_phys_src = (addr64_t) src; in kdp_machine_phys_read() 192 cnt_src = ARM_PGBYTES - (cur_phys_src & PAGE_MASK); in kdp_machine_phys_read() 204 cur_phys_src += cnt; in kdp_machine_phys_read() 220 addr64_t cur_phys_src, cur_phys_dst; in kdp_machine_vm_write() local 237 if ((cur_phys_src = kdp_vtophys(kernel_pmap, cur_virt_src)) == 0) { in kdp_machine_vm_write() [all …]
|
| /xnu-11215/osfmk/i386/ |
| H A D | machine_routines.c | 288 addr64_t cur_phys_dst, cur_phys_src; in ml_nofault_copy() local 292 if (!(cur_phys_src = kvtophys(virtsrc))) { in ml_nofault_copy() 298 if (!pmap_valid_page(i386_btop(cur_phys_dst)) || !pmap_valid_page(i386_btop(cur_phys_src))) { in ml_nofault_copy() 301 count = (uint32_t)(PAGE_SIZE - (cur_phys_src & PAGE_MASK)); in ml_nofault_copy() 309 bcopy_phys(cur_phys_src, cur_phys_dst, count); in ml_nofault_copy() 334 addr64_t cur_phys_src; in ml_validate_nofault() local 338 if (!(cur_phys_src = kvtophys(virtsrc))) { in ml_validate_nofault() 341 if (!pmap_valid_page(i386_btop(cur_phys_src))) { in ml_validate_nofault() 344 count = (uint32_t)(PAGE_SIZE - (cur_phys_src & PAGE_MASK)); in ml_validate_nofault()
|
| /xnu-11215/osfmk/arm64/ |
| H A D | machine_routines.c | 2151 addr64_t cur_phys_dst, cur_phys_src; local 2155 if (!(cur_phys_src = kvtophys(virtsrc))) { 2162 !pmap_valid_address(trunc_page_64(cur_phys_src))) { 2165 count = PAGE_SIZE - (cur_phys_src & PAGE_MASK); 2173 bcopy_phys(cur_phys_src, cur_phys_dst, count); 2198 addr64_t cur_phys_src; local 2202 if (!(cur_phys_src = kvtophys(virtsrc))) { 2205 if (!pmap_valid_address(trunc_page_64(cur_phys_src))) { 2208 count = (uint32_t)(PAGE_SIZE - (cur_phys_src & PAGE_MASK));
|