Home
last modified time | relevance | path

Searched refs:notifyMsg (Results 1 – 3 of 3) sorted by relevance

/xnu-8020.101.4/iokit/Kernel/
H A DIODataQueue.cpp107 assert(!notifyMsg); in initWithCapacity()
108 notifyMsg = IOMallocType(IODataQueueInternal); in initWithCapacity()
109 ((IODataQueueInternal *)notifyMsg)->queueSize = size; in initWithCapacity()
143 if (notifyMsg) { in free()
145 …IOFreeAligned(dataQueue, round_page(((IODataQueueInternal *)notifyMsg)->queueSize + DATA_QUEUE_MEM… in free()
149 IOFreeType(notifyMsg, IODataQueueInternal); in free()
150 notifyMsg = NULL; in free()
179 queueSize = ((IODataQueueInternal *) notifyMsg)->queueSize; in enqueue()
261 msgh = &((IODataQueueInternal *) notifyMsg)->msg; in setNotificationPort()
274 msgh = &((IODataQueueInternal *) notifyMsg)->msg; in sendDataAvailableNotification()
[all …]
H A DIOSharedDataQueue.cpp119 if (!notifyMsg) { in initWithCapacity()
120 notifyMsg = IOMallocType(mach_msg_header_t); in initWithCapacity()
121 if (!notifyMsg) { in initWithCapacity()
125 bzero(notifyMsg, sizeof(mach_msg_header_t)); in initWithCapacity()
138 if (notifyMsg) { in free()
139 IOFreeType(notifyMsg, mach_msg_header_t); in free()
140 notifyMsg = NULL; in free()
/xnu-8020.101.4/iokit/IOKit/
H A DIODataQueue.h81 void * notifyMsg; variable