Searched defs:blocker (Results 1 - 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/locks/
H A DLockSupport.java70 * {@code blocker} object parameter. This object is recorded while
76 * a {@code blocker} within a lock implementation is {@code this}.
183 * @param blocker the synchronization object responsible for this
187 public static void park(Object blocker) { argument
189 setBlocker(t, blocker);
221 * @param blocker the synchronization object responsible for this
226 public static void parkNanos(Object blocker, long nanos) { argument
229 setBlocker(t, blocker);
262 * @param blocker the synchronization object responsible for this
268 public static void parkUntil(Object blocker, lon argument
[all...]
/libcore/ojluni/src/main/java/java/lang/
H A DThread.java238 * operation, if any. The blocker's interrupt method should be invoked
241 private volatile Interruptible blocker; field in class:Thread
245 * Set the blocker field; invoked via sun.misc.SharedSecrets from java.nio code
251 blocker = b;
783 blocker = null;
921 Interruptible b = blocker;
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DForkJoinPool.java3400 * thread is blocked in {@link ManagedBlocker#block blocker.block()}.
3402 * <p>This method repeatedly calls {@code blocker.isReleasable()} and
3403 * {@code blocker.block()} until either method returns {@code true}.
3404 * Every call to {@code blocker.block()} is preceded by a call to
3405 * {@code blocker.isReleasable()} that returned {@code false}.
3410 * while (!blocker.isReleasable())
3411 * if (blocker.block())
3416 * {@code blocker.block()}.
3418 * @param blocker the blocker tas
3421 managedBlock(ManagedBlocker blocker) argument
[all...]

Completed in 35 milliseconds