Home | History | Annotate | Download | only in android

Lines Matching refs:queue

633  * Input queue
635 * An input queue is the facility through which you retrieve input
642 * Add this input queue to a looper for processing. See
645 void AInputQueue_attachLooper(AInputQueue* queue, ALooper* looper,
649 * Remove the input queue from the looper it is currently attached to.
651 void AInputQueue_detachLooper(AInputQueue* queue);
655 * input queue. Returns 1 if the queue has events; 0 if
658 int32_t AInputQueue_hasEvents(AInputQueue* queue);
661 * Returns the next available event from the queue. Returns a negative
664 int32_t AInputQueue_getEvent(AInputQueue* queue, AInputEvent** outEvent);
671 * event to appear again in the event queue (if it does not get consumed during
674 int32_t AInputQueue_preDispatchEvent(AInputQueue* queue, AInputEvent* event);
680 void AInputQueue_finishEvent(AInputQueue* queue, AInputEvent* event, int handled);