/libcore/luni/src/main/java/java/util/concurrent/locks/ |
LockSupport.java | 18 * it <em>may</em> block. A call to {@code unpark} makes the permit 22 * <p>Methods {@code park} and {@code unpark} provide efficient 27 * to {@code unpark} it will preserve liveness, due to the 34 * spinning, but must be paired with an {@code unpark} to be 87 * LockSupport.unpark(waiters.peek()); 118 * @param thread the thread to unpark, or {@code null}, in which case 121 public static void unpark(Thread thread) { method in class:LockSupport 123 unsafe.unpark(thread); 136 * <li>Some other thread invokes {@link #unpark unpark} with th [all...] |
AbstractQueuedLongSynchronizer.java | 151 * unpark its successor when it releases or 398 * Thread to unpark is held in successor, which is normally 411 LockSupport.unpark(s.thread); [all...] |
AbstractQueuedSynchronizer.java | 381 * unpark its successor when it releases or 628 * Thread to unpark is held in successor, which is normally 641 LockSupport.unpark(s.thread); [all...] |
/libcore/libart/src/main/java/sun/misc/ |
Unsafe.java | 297 * a previous call to {@link #unpark}. This method may also return 298 * spuriously (that is, without the thread being told to unpark 323 * @param obj non-null; the object to unpark 325 public void unpark(Object obj) { method in class:Unsafe 327 ((Thread) obj).unpark(); method
|
/libcore/libdvm/src/main/java/sun/misc/ |
Unsafe.java | 309 * a previous call to {@link #unpark}. This method may also return 310 * spuriously (that is, without the thread being told to unpark 335 * @param obj non-null; the object to unpark 337 public void unpark(Object obj) { method in class:Unsafe 339 ((Thread) obj).unpark(); method
|
/art/test/067-preemptive-unpark/src/ |
Main.java | 16 UNSAFE.unpark(test);
|
/dalvik/tests/067-preemptive-unpark/src/ |
Main.java | 16 UNSAFE.unpark(test);
|
/libcore/luni/src/test/java/tests/api/org/apache/harmony/kernel/dalvik/ |
ThreadsTest.java | 65 /** Test the case where the unpark happens before the timeout. */ 86 UNSAFE.unpark(parkerThread); 107 /** Test the case where the unpark happens before the timeout. */ 128 UNSAFE.unpark(parkerThread); 282 UNSAFE.unpark(thread);
|
/frameworks/base/core/java/android/database/sqlite/ |
SQLiteConnectionPool.java | 728 // Send the waiter an exception and unpark it. 730 LockSupport.unpark(waiter.mThread); 781 // Unpark all waiters that have requests that we can fulfill [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
Exchanger.java | 133 * some park/unpark mechanics compared to LockSupport versions. 345 U.unpark(w); 440 U.unpark(w);
|
Phaser.java | [all...] |
FutureTask.java | 343 LockSupport.unpark(t);
|
LinkedTransferQueue.java | 501 LockSupport.unpark(waiter); 601 LockSupport.unpark(p.waiter); [all...] |
SynchronousQueue.java | 105 * Blocking is mainly accomplished using LockSupport park/unpark, 204 volatile Thread waiter; // to control park/unpark 232 if (w != null) { // waiters need at most one unpark 234 LockSupport.unpark(w); 509 volatile Thread waiter; // to control park/unpark 692 LockSupport.unpark(m.waiter); [all...] |
ForkJoinPool.java | 289 * We park/unpark workers after placing in an event wait queue 305 * WorkQueues to reduce unnecessary calls to unpark. (This 327 * most platforms, signalling (unpark) overhead time is noticeably [all...] |
/libcore/luni/src/test/java/libcore/java/lang/ |
OldThreadTest.java | 119 LockSupport.unpark(parker);
|
/libcore/libart/src/main/java/java/lang/ |
Thread.java | 1140 public void unpark() { method in class:Thread [all...] |
/libcore/libdvm/src/main/java/java/lang/ |
Thread.java | 1125 public void unpark() { method in class:Thread [all...] |
/prebuilts/sdk/10/ |
android.jar | |
/prebuilts/sdk/11/ |
android.jar | |
/prebuilts/sdk/13/ |
android.jar | |
/prebuilts/sdk/16/ |
android.jar | |
/prebuilts/sdk/5/ |
android.jar | |
/prebuilts/sdk/7/ |
android.jar | |
/prebuilts/sdk/8/ |
android.jar | |