/frameworks/base/services/java/com/android/server/am/ |
H A D | AppErrorResult.java | 33 wait();
|
/frameworks/base/core/java/android/os/ |
H A D | ConditionVariable.java | 23 * 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 as 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 D | IPowerManager.aidl | 40 void reboot(boolean confirm, String reason, boolean wait); 41 void shutdown(boolean confirm, boolean wait);
|
H A D | HandlerThread.java | 76 // If the thread has been started, wait until the looper has been created. 80 wait();
|
H A D | SystemService.java | 123 sPropertyLock.wait(timeoutMillis); 143 sPropertyLock.wait();
|
/frameworks/native/services/surfaceflinger/ |
H A D | Barrier.h | 40 void wait() const { function in class:android::Barrier 43 cv.wait(lock);
|
H A D | MessageQueue.h | 49 void wait() const { barrier.wait(); } function in class:android::MessageBase
|
/frameworks/rs/ |
H A D | rsSignal.h | 37 bool wait(uint64_t timeout = 0);
|
/frameworks/base/libs/hwui/thread/ |
H A D | Barrier.h | 41 void wait() const { function in class:android::uirenderer::Barrier 44 mCondition.wait(mLock);
|
H A D | Signal.h | 38 void wait() { function in class:android::uirenderer::Signal 41 mCondition.wait(mLock);
|
H A D | Future.h | 38 mBarrier.wait();
|
/frameworks/av/media/libmedia/ |
H A D | SoundPoolThread.cpp | 28 mCondition.wait(mLock); 41 mCondition.wait(mLock); 56 mCondition.wait(mLock);
|
/frameworks/base/core/tests/coretests/src/android/os/ |
H A D | HandlerThreadTest.java | 57 // 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 D | HandlerTester.java | 35 wait(timeout);
|
/frameworks/base/tests/WebViewTests/src/com/android/webviewtests/ |
H A D | JavaBridgeTestBase.java | 41 wait(5000); 63 wait(5000); 86 // On the UI thread, load an empty page and wait for it to finish
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/ |
H A D | BridgePowerManager.java | 63 public void reboot(boolean confirm, String reason, boolean wait) { argument 68 public void shutdown(boolean confirm, boolean wait) { argument
|
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/ |
H A D | MediaBufferPuller.cpp | 62 mUserCond.wait(mLock); 92 mUserCond.wait(mLock); 127 mAcquireCond.wait(mLock); 154 mReleaseCond.wait(mLock); 163 mReleaseCond.wait(mLock);
|
/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/ |
H A D | Test.java | 39 mBundle.wait();
|
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/scriptsupport/ |
H A D | Starter.java | 42 * until everything is finished so that the script can wait for the end if it needs 70 this.wait();
|
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/ |
H A D | FrameworkPerfTest.java | 25 activity.mResultNotifier.wait(TEST_TIMEOUT);
|
/frameworks/testing/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/ |
H A D | EventsCommand.java | 64 // there's really no way to stop, essentially we just block indefinitely here and wait 68 mQuitLock.wait();
|
/frameworks/av/media/libstagefright/ |
H A D | MediaAdapter.cpp | 87 mBufferReadCond.wait(mAdapterLock); 119 ALOGV("wait for the buffer returned @ pushBuffer! %p", buffer); 120 mBufferReturnedCond.wait(mAdapterLock);
|
/frameworks/base/tests/DumpRenderTree2/assets/ |
H A D | run_layout_tests.py | 63 subprocess.Popen(cmd, shell=True).wait() 69 subprocess.Popen(cmd, shell=True).wait()
|
/frameworks/native/include/utils/ |
H A D | Condition.h | 40 * call wait(), then either re-wait() if things aren't quite what you want, 41 * or unlock the mutex and continue. All threads calling wait() must 60 status_t wait(Mutex& mutex); 105 inline status_t Condition::wait(Mutex& mutex) { function in class:android::Condition
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/ |
H A D | GSMTestHandler.java | 68 this.wait(); 101 this.wait(FAIL_TIMEOUT_MILLIS);
|