Lines Matching refs:queue

28  * queue.  When you create a new Handler, it is bound to the thread /
29 * message queue of the thread that is creating it -- from that point on,
30 * it will deliver messages and runnables to that message queue and execute
31 * them as they come out of the message queue.
42 * you to enqueue Runnable objects to be called by the message queue when
49 * allow the item to be processed as soon as the message queue is ready
56 * running a message queue that takes care of managing the top-level
62 * in the Handler's message queue and processed when appropriate.
314 * Causes the Runnable r to be added to the message queue.
321 * message queue. Returns false on failure, usually because the
322 * looper processing the message queue is exiting.
330 * Causes the Runnable r to be added to the message queue, to be run
341 * message queue. Returns false on failure, usually because the
342 * looper processing the message queue is exiting. Note that a
353 * Causes the Runnable r to be added to the message queue, to be run
364 * message queue. Returns false on failure, usually because the
365 * looper processing the message queue is exiting. Note that a
378 * Causes the Runnable r to be added to the message queue, to be run
390 * message queue. Returns false on failure, usually because the
391 * looper processing the message queue is exiting. Note that a
404 * message queue. The runnable will be run on the thread to which this
407 * can easily starve the message queue, cause ordering problems, or have
413 * message queue. Returns false on failure, usually because the
414 * looper processing the message queue is exiting.
455 * looper processing the message queue is exiting.
479 * Remove any pending posts of Runnable r that are in the message queue.
488 * <var>token</var> that are in the message queue. If <var>token</var> is null,
497 * Pushes a message onto the end of the message queue after all pending messages
502 * message queue. Returns false on failure, usually because the
503 * looper processing the message queue is exiting.
514 * message queue. Returns false on failure, usually because the
515 * looper processing the message queue is exiting.
528 * message queue. Returns false on failure, usually because the
529 * looper processing the message queue is exiting.
543 * message queue. Returns false on failure, usually because the
544 * looper processing the message queue is exiting.
554 * Enqueue a message into the message queue after all pending messages
559 * message queue. Returns false on failure, usually because the
560 * looper processing the message queue is exiting. Note that a
574 * Enqueue a message into the message queue after all pending messages
586 * message queue. Returns false on failure, usually because the
587 * looper processing the message queue is exiting. Note that a
593 MessageQueue queue = mQueue;
594 if (queue == null) {
600 return enqueueMessage(queue, msg, uptimeMillis);
604 * Enqueue a message at the front of the message queue, to be processed on
608 * can easily starve the message queue, cause ordering problems, or have
612 * message queue. Returns false on failure, usually because the
613 * looper processing the message queue is exiting.
616 MessageQueue queue = mQueue;
617 if (queue == null) {
623 return enqueueMessage(queue, msg, 0);
626 private boolean enqueueMessage(MessageQueue queue, Message msg, long uptimeMillis) {
631 return queue.enqueueMessage(msg, uptimeMillis);
636 * message queue.
644 * 'object' that are in the message queue. If <var>object</var> is null,
662 * the message queue.
670 * whose obj is 'object' in the message queue.
678 * the message queue.