Searched defs:TIMED (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/trace/
H A DtraceEvent.hpp30 TIMED enumerator in enum:EventStartTime
56 TraceEvent(EventStartTime timing=TIMED) :
69 if (timing == TIMED && !T::isInstant) {
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DLinkedTransferQueue.java586 private static final int TIMED = 3; // for timed poll, tryTransfer field in class:LinkedTransferQueue
599 * @param how NOW, ASYNC, SYNC, or TIMED
600 * @param nanos timeout in nanosecs, used only if mode is TIMED
644 return awaitMatch(s, pred, e, (how == TIMED), nanos);
1129 if (xfer(e, true, TIMED, unit.toNanos(timeout)) == null)
1145 E e = xfer(null, false, TIMED, unit.toNanos(timeout));

Completed in 42 milliseconds