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