Searched refs:dstAddr64 (Results 1 – 2 of 2) sorted by relevance
| /xnu-11215/iokit/Kernel/ |
| H A D | IOHibernateIO.cpp | 310 addr64_t dstAddr64; in IOMemoryDescriptorWriteFromPhysical() local 313 dstAddr64 = md->getPhysicalSegment(offset, &dstLen, kIOMemoryMapperNone); in IOMemoryDescriptorWriteFromPhysical() 314 if (!dstAddr64) { in IOMemoryDescriptorWriteFromPhysical() 324 bcopy_phys(srcAddr, dstAddr64, dstLen); in IOMemoryDescriptorWriteFromPhysical() 326 copypv(srcAddr, dstAddr64, dstLen, in IOMemoryDescriptorWriteFromPhysical() 366 copypv(srcAddr, dstAddr64, dstLen, in IOMemoryDescriptorReadToPhysical()
|
| H A D | IOMemoryDescriptor.cpp | 2633 addr64_t dstAddr64; in writeBytes() local 2636 dstAddr64 = getPhysicalSegment(offset, &dstLen, kIOMemoryMapperNone); in writeBytes() 2637 if (!dstAddr64) { in writeBytes() 2650 bzero_phys(dstAddr64, (unsigned int) dstLen); in writeBytes() 2652 copypv(srcAddr, (addr64_t) dstAddr64, (unsigned int) dstLen, in writeBytes() 3961 addr64_t dstAddr64; in performOperation() local 3964 dstAddr64 = getPhysicalSegment(offset, &dstLen, kIOMemoryMapperNone); in performOperation() 3965 if (!dstAddr64) { in performOperation() 3982 (*func)(dstAddr64, (unsigned int) dstLen); in performOperation() 3985 (*func_ext)(dstAddr64, (unsigned int) dstLen, (unsigned int) remaining, &res); in performOperation() [all …]
|