Searched refs:wait (Results 1 - 25 of 130) sorted by relevance

123456

/frameworks/base/services/java/com/android/server/am/
H A DAppErrorResult.java33 wait();
/frameworks/base/core/java/android/os/
H A DConditionVariable.java23 * This differs from the built-in java.lang.Object wait() and notify()
24 * in that this class contains the condition to wait on itself. That means
29 * This class uses itself is at the object to wait on, so if you wait()
97 this.wait();
112 * @param timeout the minimum time to wait in milliseconds.
119 // Object.wait(0) means wait forever, to mimic this, we just
128 this.wait(end-now);
H A DHandlerThread.java75 // If the thread has been started, wait until the looper has been created.
79 wait();
/frameworks/base/services/surfaceflinger/
H A DBarrier.h40 void wait() const { function in class:android::Barrier
43 cv.wait(lock);
H A DMessageQueue.h68 void wait() const { barrier.wait(); } function in class:android::MessageBase
/frameworks/base/test-runner/src/junit/textui/
H A DTestRunner.java12 * java junit.textui.TestRunner [-wait] TestCaseClass
19 * When the wait command line argument is given TestRunner
112 public TestResult doRun(Test suite, boolean wait) { argument
121 pause(wait);
125 protected void pause(boolean wait) { argument
126 if (!wait) return;
154 boolean wait= false;
157 if (args[i].equals("-wait"))
158 wait= true;
168 throw new Exception("Usage: TestRunner [-wait] testCaseNam
[all...]
/frameworks/base/tests/CoreTests/android/core/
H A DMonitorTest.java34 wait(1);
35 wait(10);
38 wait(0, 1);
39 wait(0, 999999);
40 wait(1, 1);
41 wait(1, 999999);
44 throw new RuntimeException("good Object.wait() interrupted",
48 "Object.wait() with good arguments", ex);
56 wait(-1);
59 throw new RuntimeException("bad Object.wait() interrupte
[all...]
/frameworks/base/media/jni/soundpool/
H A DSoundPoolThread.cpp28 mCondition.wait(mLock);
41 mCondition.wait(mLock);
56 mCondition.wait(mLock);
/frameworks/base/core/tests/coretests/src/android/os/
H A DHandlerThreadTest.java57 // need to block here to wait for our onLooperPrepared() to complete
62 wait();
90 // wait until we have the lock before sending the message.
93 // wait for the message to be handled
94 h1.wait();
H A DHandlerTester.java35 wait(timeout);
H A DTestHandlerThread.java43 wait(endTime-now);
H A DMessengerTest.java101 wait();
/frameworks/base/libs/rs/
H A DrsLocklessFifo.h50 void wait();
H A DrsLocklessFifo.cpp126 mSignalToControl.wait();
137 mSignalToWorker.wait();
177 // Toss in a reset then the normal wait for space will do the rest.
183 // it will fit here so we just need to wait for space.
247 void LocklessCommandFifo::Signal::wait() function in class:LocklessCommandFifo::Signal
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DRuimPhoneBookInterfaceManager.java63 mLock.wait();
H A DRuimSmsInterfaceManager.java133 mLock.wait();
163 mLock.wait();
187 mLock.wait();
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DSimPhoneBookInterfaceManager.java63 mLock.wait();
H A DSimSmsInterfaceManager.java151 mLock.wait();
181 mLock.wait();
207 mLock.wait();
323 mLock.wait();
343 mLock.wait();
/frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DGSMTestHandler.java68 this.wait();
101 this.wait(FAIL_TIMEOUT_MILLIS);
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DIccPhoneBookInterfaceManager.java155 mLock.wait();
201 mLock.wait();
246 mLock.wait();
/frameworks/base/media/libstagefright/
H A DMediaBufferGroup.cpp74 mCondition.wait(mLock);
H A DThreadedSource.cpp106 mCondition.wait(mLock);
111 mCondition.wait(mLock);
/frameworks/base/media/libstagefright/rtsp/
H A DARTSPController.cpp59 mCondition.wait(mLock);
80 mCondition.wait(mLock);
/frameworks/base/cmds/installd/
H A Dinstalld.h33 #include <sys/wait.h>
/frameworks/base/core/java/android/net/http/
H A DConnectionThread.java92 /* wait for work */
98 mRequestFeeder.wait();

Completed in 410 milliseconds

123456