Home
last modified time | relevance | path

Searched refs:bmd (Results 1 – 6 of 6) sorted by relevance

/xnu-11215/iokit/Tests/
H A DTestIOMemoryDescriptor.cpp188 assert(bmd); in IODMACommandForceDoubleBufferTest()
236 bmd->release(); in IODMACommandForceDoubleBufferTest()
427 assert(bmd); in IOMemoryPrefaultTest()
442 bmd->release(); in IOMemoryPrefaultTest()
468 assert(bmd); in IOBMDSetLengthMapTest()
480 bmd->release(); in IOBMDSetLengthMapTest()
509 assert(bmd); in BadFixedAllocTest()
513 bmd->release(); in BadFixedAllocTest()
525 assert(bmd); in IODirectionPrepareNoZeroFillTest()
549 assert(bmd); in IOMemoryMapTest()
[all …]
/xnu-11215/iokit/System/
H A DIODataQueueDispatchSourceShared.h79 IOBufferMemoryDescriptor * bmd; in Create_Impl() local
96 bmd = IOBufferMemoryDescriptor::withOptions( in Create_Impl()
99 if (!bmd) { in Create_Impl()
103 inst->ivars->memory = bmd; in Create_Impl()
106 inst->ivars->dataQueue = (typeof(inst->ivars->dataQueue))bmd->getBytesNoCopy(); in Create_Impl()
/xnu-11215/iokit/Kernel/
H A DIOLib.cpp869 IOBufferMemoryDescriptor * bmd; in IOMallocContiguous() local
876 bmd = IOBufferMemoryDescriptor::inTaskWithPhysicalMask( in IOMallocContiguous()
878 if (!bmd) { in IOMallocContiguous()
885 bmd->release(); in IOMallocContiguous()
888 entry->virtualAddr = (mach_vm_address_t) bmd->getBytesNoCopy(); in IOMallocContiguous()
889 entry->md = bmd; in IOMallocContiguous()
896 *physicalAddress = bmd->getPhysicalAddress(); in IOMallocContiguous()
H A DIOHibernateIO.cpp1398 bmd = IOBufferMemoryDescriptor::withBytes(&vars->volumeCryptKey[0], in IOHibernateDone() local
1400 if (!bmd) { in IOHibernateDone()
1403 IOSetAPFSKeyStoreData(bmd); in IOHibernateDone()
H A DIOUserServer.cpp936 IOBufferMemoryDescriptor * bmd; in Create_Impl() local
944 bmd = IOBufferMemoryDescriptor::inTaskWithOptions( in Create_Impl()
947 *memory = bmd; in Create_Impl()
949 if (!bmd) { in Create_Impl()
953 reserved = bmd->getKernelReserved(); in Create_Impl()
H A DIOMemoryDescriptor.cpp539 IOBufferMemoryDescriptor * bmd; in memoryReferenceCreate() local
540 if ((bmd = OSDynamicCast(IOBufferMemoryDescriptor, this))) { in memoryReferenceCreate()
541 nextLen = bmd->getCapacity(); in memoryReferenceCreate()