Searched defs:timed (Results 1 - 5 of 5) sorted by relevance

/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
H A DAbstractExecutorService.java63 boolean timed, long nanos)
84 long lastTime = (timed)? System.nanoTime() : 0;
102 else if (timed) {
62 doInvokeAny(Collection<Callable<T>> tasks, boolean timed, long nanos) argument
H A DCyclicBarrier.java162 private int dowait(boolean timed, long nanos) argument
194 // loop until tripped, broken, interrupted, or timed out
197 if (!timed)
219 if (timed && nanos <= 0L) {
319 * interrupted or timed out while the current thread was
389 * interrupted or timed out while the current thread was
H A DExchanger.java223 * The number of times to spin before blocking in timed waits.
304 * @param timed true if the wait is timed
305 * @param nanos if timed, the maximum wait time
306 * @return the other thread's item, or CANCEL if interrupted or timed out
308 private Object doExchange(Object item, boolean timed, long nanos) { argument
329 return timed? awaitNanos(me, slot, nanos): await(me, slot);
480 * thread. Fails if timed out or interrupted before hole filled.
519 * thread gives up on a timed wait, it is possible that a
H A DSynchronousQueue.java144 * @param timed if this operation should timeout
151 abstract Object transfer(Object e, boolean timed, long nanos); argument
158 * The number of times to spin before blocking in timed waits.
168 * This is greater than timed value because untimed waits spin
175 * rather than to use timed park. A rough estimate suffices.
289 Object transfer(Object e, boolean timed, long nanos) { argument
317 if (timed && nanos <= 0) { // can't wait
323 SNode m = awaitFulfill(s, timed, nanos);
370 * @param timed true if timed wai
374 awaitFulfill(SNode s, boolean timed, long nanos) argument
594 transfer(Object e, boolean timed, long nanos) argument
688 awaitFulfill(QNode s, Object e, boolean timed, long nanos) argument
[all...]
/dalvik/vm/
H A DSync.c682 bool timed; local
708 timed = false;
711 timed = true;
734 if (timed)
767 if (!timed) {

Completed in 110 milliseconds