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

12345678

/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 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 DIPowerManager.aidl40 void reboot(boolean confirm, String reason, boolean wait);
41 void shutdown(boolean confirm, boolean wait);
H A DHandlerThread.java75 // If the thread has been started, wait until the looper has been created.
79 wait();
H A DSystemService.java123 sPropertyLock.wait(timeoutMillis);
143 sPropertyLock.wait();
/frameworks/native/services/surfaceflinger/
H A DBarrier.h40 void wait() const { function in class:android::Barrier
43 cv.wait(lock);
H A DMessageQueue.h49 void wait() const { barrier.wait(); } function in class:android::MessageBase
/frameworks/rs/
H A DrsSignal.h37 bool wait(uint64_t timeout = 0);
/frameworks/support/renderscript/v8/rs_support/
H A DrsSignal.h37 bool wait(uint64_t timeout = 0);
/frameworks/av/media/libmedia/
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);
/frameworks/base/tests/WebViewTests/src/com/android/webviewtests/
H A DJavaBridgeTestBase.java41 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 DBridgePowerManager.java63 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 DMediaBufferPuller.cpp62 mUserCond.wait(mLock);
92 mUserCond.wait(mLock);
127 mAcquireCond.wait(mLock);
154 mReleaseCond.wait(mLock);
163 mReleaseCond.wait(mLock);
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/scriptsupport/
H A DStarter.java42 * 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 DFrameworkPerfTest.java25 activity.mResultNotifier.wait(TEST_TIMEOUT);
/frameworks/testing/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
H A DEventsCommand.java61 // there's really no way to stop, essentially we just block indefinitely here and wait
65 mQuitLock.wait();
/frameworks/base/tests/DumpRenderTree2/assets/
H A Drun_layout_tests.py63 subprocess.Popen(cmd, shell=True).wait()
69 subprocess.Popen(cmd, shell=True).wait()
/frameworks/native/include/utils/
H A DCondition.h40 * 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
55 status_t wait(Mutex& mutex);
92 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 DGSMTestHandler.java68 this.wait();
101 this.wait(FAIL_TIMEOUT_MILLIS);
/frameworks/support/volley/src/com/android/volley/toolbox/
H A DRequestFuture.java111 wait(0);
113 wait(timeoutMs);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DSimSmsInterfaceManager.java155 mLock.wait();
185 mLock.wait();
211 mLock.wait();
332 mLock.wait();
352 mLock.wait();
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DRuimSmsInterfaceManager.java132 mLock.wait();
162 mLock.wait();
186 mLock.wait();
/frameworks/compile/libbcc/tools/build/
H A Dgen-build-info.py41 proc.wait()
51 proc.wait()

Completed in 406 milliseconds

12345678