HomeSort by relevance Sort by last modified time
    Searched refs:timed (Results 1 - 10 of 10) sorted by null

  /libcore/luni/src/main/java/java/util/concurrent/
CyclicBarrier.java 164 private int dowait(boolean timed, long nanos)
196 // loop until tripped, broken, interrupted, or timed out
199 if (!timed)
221 if (timed && nanos <= 0L) {
321 * interrupted or timed out while the current thread was
391 * interrupted or timed out while the current thread was
SynchronousQueue.java 149 * @param timed if this operation should timeout
156 abstract Object transfer(Object e, boolean timed, long nanos);
163 * The number of times to spin before blocking in timed waits.
173 * This is greater than timed value because untimed waits spin
180 * rather than to use timed park. A rough estimate suffices.
294 Object transfer(Object e, boolean timed, long nanos) {
322 if (timed && nanos <= 0) { // can't wait
328 SNode m = awaitFulfill(s, timed, nanos);
375 * @param timed true if timed wai
    [all...]
AbstractExecutorService.java 115 boolean timed, long nanos)
136 long lastTime = (timed)? System.nanoTime() : 0;
154 else if (timed) {
Exchanger.java 225 * The number of times to spin before blocking in timed waits.
226 * Timed waits spin more slowly because checking the time takes
306 * @param timed true if the wait is timed
307 * @param nanos if timed, the maximum wait time
308 * @return the other thread's item, or CANCEL if interrupted or timed out
310 private Object doExchange(Object item, boolean timed, long nanos) {
331 return timed? awaitNanos(me, slot, nanos): await(me, slot);
482 * thread. Fails if timed out or interrupted before hole filled.
521 * thread gives up on a timed wait, it is possible that
    [all...]
ThreadPoolExecutor.java     [all...]
  /external/webkit/WebCore/svg/
SVGAElement.cpp 163 SVGSMILElement* timed = static_cast<SVGSMILElement*>(targetElement); local
164 timed->beginByLinkActivation();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
messages.properties 38 RemoteAdtTestRunner_RunTimeoutException=Connection with device timed out.
  /external/tcpdump/
Android.mk 106 print-timed.c\
  /dalvik/vm/
Sync.c 735 bool timed; local
763 timed = false;
766 timed = true;
793 if (timed)
825 if (!timed) {
    [all...]
  /frameworks/base/docs/html/resources/
resources_toc.cs 119 <li><a href="<?cs var:toroot ?>resources/articles/timed-ui-updates.html">

Completed in 196 milliseconds