Home
last modified time | relevance | path

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

/xnu-8792.41.9/iokit/Kernel/
H A DIODataQueue.cpp108 assert(!notifyMsg); in initWithCapacity()
109 notifyMsg = IOMallocType(IODataQueueInternal); in initWithCapacity()
110 ((IODataQueueInternal *)notifyMsg)->queueSize = size; in initWithCapacity()
144 if (notifyMsg) { in free()
147 round_page(((IODataQueueInternal *)notifyMsg)->queueSize + in free()
152 IOFreeType(notifyMsg, IODataQueueInternal); in free()
153 notifyMsg = NULL; in free()
182 queueSize = ((IODataQueueInternal *) notifyMsg)->queueSize; in enqueue()
264 msgh = &((IODataQueueInternal *) notifyMsg)->msg; in setNotificationPort()
277 msgh = &((IODataQueueInternal *) notifyMsg)->msg; in sendDataAvailableNotification()
[all …]
H A DIOSharedDataQueue.cpp120 if (!notifyMsg) { in initWithCapacity()
121 notifyMsg = IOMallocType(mach_msg_header_t); in initWithCapacity()
122 if (!notifyMsg) { in initWithCapacity()
126 bzero(notifyMsg, sizeof(mach_msg_header_t)); in initWithCapacity()
140 if (notifyMsg) { in free()
141 IOFreeType(notifyMsg, mach_msg_header_t); in free()
142 notifyMsg = NULL; in free()
/xnu-8792.41.9/iokit/IOKit/
H A DIODataQueue.h81 void * notifyMsg; variable