Home
last modified time | relevance | path

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

/xnu-12377.41.6/iokit/Kernel/
H A DIODataQueue.cpp109 assert(!notifyMsg); in initWithCapacity()
110 notifyMsg = IOMallocType(IODataQueueInternal); in initWithCapacity()
111 ((IODataQueueInternal *)notifyMsg)->queueSize = size; in initWithCapacity()
145 if (notifyMsg) { in free()
148 round_page(((IODataQueueInternal *)notifyMsg)->queueSize + in free()
153 IOFreeType(notifyMsg, IODataQueueInternal); in free()
154 notifyMsg = NULL; in free()
183 queueSize = ((IODataQueueInternal *) notifyMsg)->queueSize; in enqueue()
265 msgh = &((IODataQueueInternal *) notifyMsg)->msg; in setNotificationPort()
278 msgh = &((IODataQueueInternal *) notifyMsg)->msg; in sendDataAvailableNotification()
[all …]
H A DIOSharedDataQueue.cpp122 if (!notifyMsg) { in initWithCapacity()
123 notifyMsg = IOMallocType(mach_msg_header_t); in initWithCapacity()
124 if (!notifyMsg) { in initWithCapacity()
128 bzero(notifyMsg, sizeof(mach_msg_header_t)); in initWithCapacity()
142 if (notifyMsg) { in free()
143 IOFreeType(notifyMsg, mach_msg_header_t); in free()
144 notifyMsg = NULL; in free()
/xnu-12377.41.6/iokit/IOKit/
H A DIODataQueue.h81 void * notifyMsg; variable