Home | History | Annotate | Download | only in os

Lines Matching refs:when

52      * Callback interface for discovering when a thread is going to block
57 * Called when the message queue has run out of messages and will now
69 * {@link IdleHandler#queueIdle IdleHandler.queueIdle()} when it is
126 final long when = msg.when;
127 if (now >= when) {
134 nextPollTimeoutMillis = (int) Math.min(when - now, Integer.MAX_VALUE);
185 final boolean enqueueMessage(Message msg, long when) {
186 if (msg.when != 0) {
204 msg.when = when;
207 if (p == null || when == 0 || when < p.when) {
213 while (p != null && p.when <= when) {