Lines Matching refs:queue
42 - (IOHIDQueueInterface**) queue; method in PrivateMethods
78 queue = NULL;
119 return (hidDeviceInterface != NULL && allCookies != NULL && queue != NULL);
206 if (queue != NULL) {
207 (*queue)->stop(queue);
209 //dispose of queue
210 (*queue)->dispose(queue);
212 //release the queue we allocated
213 (*queue)->Release(queue);
215 queue = NULL;
249 - (IOHIDQueueInterface**) queue { method in PrivateMethods
250 return queue;
329 /* Callback method for the device queue
346 result = (*[remote queue])->getNextEvent([remote queue], &event, zeroTime, 0);
462 queue = (*hidDeviceInterface)->allocQueue(hidDeviceInterface);
463 if (queue) {
464 …result = (*queue)->create(queue, 0, 12); //depth: maximum number of elements in queue before oldes…
470 (*queue)->addElement(queue, cookie, 0);
474 ioReturnValue = (*queue)->createAsyncEventSource(queue, &eventSource);
476 ioReturnValue = (*queue)->setEventCallout(queue,QueueCallbackFunction, self, NULL);
480 //start data delivery to queue
481 (*queue)->start(queue);