Searched refs:notifyMsg (Results 1 – 3 of 3) sorted by relevance
109 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 …]
122 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()
81 void * notifyMsg; variable