/external/apache-http/src/org/apache/http/impl/conn/tsccm/ |
WaitingThread.java | 60 private Thread waiter; field in class:WaitingThread 114 return this.waiter; 142 if (this.waiter != null) { 146 "\nwaiter: " + this.waiter); 152 this.waiter = Thread.currentThread(); 165 this.waiter = null; 181 if (this.waiter == null) {
|
ConnPoolByRoute.java | 684 WaitingThread waiter = iwth.next(); 686 waiter.wakeup();
|
/libcore/luni/src/test/java/libcore/java/lang/ |
OldAndroidMonitorTest.java | 106 Waiter waiter; field in class:OldAndroidMonitorTest.Interrupter 108 Interrupter(String name, Waiter waiter) { 110 this.waiter = waiter; 123 waiter.spin = true; 124 // System.out.println("InterruptTest: starting waiter"); 125 waiter.start(); 133 /* Waiter is spinning, and its monitor should still be thin 273 Waiter waiter = new Waiter("InterruptTest Waiter"); local [all...] |
/external/chromium/base/synchronization/ |
waitable_event.h | 104 class Waiter { 106 // Signal the waiter to wake up. 108 // Consider the case of a Waiter which is in multiple WaitableEvent's 110 // signaled at the same time. Now, each will wake only the first waiter in 113 // to dequeue the waiter from the other wait-list in time), two auto-resets 114 // will have happened, but only one waiter has been signaled! 116 // Because of this, a Waiter may "reject" a wake by returning false. In 128 virtual ~Waiter() {} 151 bool Dequeue(Waiter* waiter, void* tag) [all...] |
waitable_event_posix.cc | 18 // waiter is either an async wait, in which case we have a Task and the 28 // firing a waiter and so we can store that pointer to find out which event 79 // This is a synchronous waiter. The thread is waiting on the given condition 82 class SyncWaiter : public WaitableEvent::Waiter { 256 // enqueued our waiter in them all. 296 // The locks of the WaitableEvents have been taken in order and the Waiter has 300 // None of the WaitableEvent locks are held. The Waiter has not been enqueued 307 size_t count, Waiter* waiter) { 319 const size_t r = EnqueueMany(waitables + 1, count - 1, waiter); [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
Exchanger.java | 258 public volatile Thread waiter; field in class:Exchanger.Node 322 LockSupport.unpark(you.waiter); 450 * When a node/thread is about to block, it sets its waiter field 452 * parking, thus covering race vs fulfiller noticing that waiter 471 else if (node.waiter == null) // Set up to block next 472 node.waiter = w; 506 else if (node.waiter == null) 507 node.waiter = w; 541 LockSupport.unpark(you.waiter);
|
SynchronousQueue.java | 204 volatile Thread waiter; // to control park/unpark field in class:SynchronousQueue.TransferStack.SNode 231 Thread w = waiter; 233 waiter = null; 350 if (m == null) // waiter is gone 373 * When a node/thread is about to block, it sets its waiter 376 * fulfiller noticing that waiter is non-null so should be 416 else if (s.waiter == null) 417 s.waiter = w; // establish waiter so can park next iter 439 s.waiter = null; // forget threa 493 volatile Thread waiter; \/\/ to control park\/unpark field in class:SynchronousQueue.TransferQueue.QNode [all...] |
/dalvik/tests/059-finalizer-throw/src/ |
Main.java | 11 static Object waiter = new Object(); field in class:Main
|
/external/chromium/chrome/browser/chromeos/login/ |
screen_locker_browsertest.cc | 32 class Waiter : public NotificationObserver { 34 explicit Waiter(Browser* browser) 47 ~Waiter() { 75 CHROMEGTK_CALLBACK_1(Waiter, gboolean, OnWindowStateEvent, 86 DISALLOW_COPY_AND_ASSIGN(Waiter); 89 gboolean Waiter::OnWindowStateEvent(GtkWidget* widget, 231 Waiter waiter(browser()); 233 waiter.Wait(false /* not locked */, true /* full screen */); 238 Waiter waiter(browser()) [all...] |
/external/dnsmasq/src/ |
log.c | 385 struct timespec waiter; local 386 waiter.tv_sec = 0; 387 waiter.tv_nsec = 1000000 << (d - 1); /* 1 ms */ 388 nanosleep(&waiter, NULL);
|
util.c | 475 struct timespec waiter; local 478 waiter.tv_sec = 0; 479 waiter.tv_nsec = 10000; 480 nanosleep(&waiter, NULL);
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
AdnRecordCache.java | 313 Message waiter = waiters.get(i); local 315 AsyncResult.forMessage(waiter, ar.result, ar.exception); 316 waiter.sendToTarget();
|
/external/kernel-headers/original/linux/ |
module.h | 326 struct task_struct *waiter; member in struct:module 416 wake_up_process(module->waiter);
|
/external/bluetooth/glib/glib/ |
gmain.c | 1948 GMainWaiter *waiter = context->waiters->data; local 2002 GMainWaiter waiter; local [all...] |
/frameworks/base/core/java/android/app/ |
Instrumentation.java | [all...] |
/prebuilt/common/http-client/ |
httpclient-4.1.1.jar | |