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

1234567891011

/frameworks/base/services/core/java/com/android/server/am/
H A DAppErrorResult.java32 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 maximum 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.aidl52 void reboot(boolean confirm, String reason, boolean wait);
53 void rebootSafeMode(boolean confirm, boolean wait);
54 void shutdown(boolean confirm, String reason, boolean wait);
H A DHandlerThread.java76 // If the thread has been started, wait until the looper has been created.
80 wait();
/frameworks/base/libs/hwui/thread/
H A DBarrier.h36 void wait() const { function in class:android::uirenderer::Barrier
39 mCondition.wait(mLock);
H A DSignal.h40 void wait() { function in class:android::uirenderer::Signal
43 mCondition.wait(mLock);
H A DFuture.h38 mBarrier.wait();
/frameworks/native/services/surfaceflinger/
H A DBarrier.h41 // Reset the Barrier, so wait() will block until open() has been called.
49 // until wait() returns.
50 void wait() const { function in class:android::Barrier
53 cv.wait(lock);
/frameworks/rs/
H A DrsSignal.h37 bool wait(uint64_t timeout = 0);
/frameworks/native/libs/gui/tests/
H A DDisconnectWaiter.h42 mFrameCondition.wait(mMutex);
56 mDisconnectCondition.wait(mMutex);
H A DFrameWaiter.h33 mCondition.wait(mMutex);
/frameworks/base/media/jni/soundpool/
H A DSoundPoolThread.cpp28 mCondition.wait(mLock);
41 mCondition.wait(mLock);
56 mCondition.wait(mLock);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgePowerManager.java84 public void reboot(boolean confirm, String reason, boolean wait) { argument
89 public void rebootSafeMode(boolean confirm, boolean wait) { argument
94 public void shutdown(boolean confirm, String reason, boolean wait) { argument
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DDispatchThread.java66 * Queues up the job and wait for it to be done.
79 waitLock.wait(timeoutMs);
116 mJobQueue.wait();
118 Log.w(TAG, "Dispatcher thread wait() interrupted, exiting");
127 // mJobQueue.poll() returning null means wait() is
147 DispatchThread.this.wait();
/frameworks/av/services/mediacodec/
H A Dmain_codecservice.cpp23 #include <sys/wait.h>
/frameworks/av/services/mediadrm/
H A Dmain_mediadrmserver.cpp23 #include <sys/wait.h>
/frameworks/av/services/mediaextractor/
H A Dmain_extractorservice.cpp23 #include <sys/wait.h>
/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/packages/Shell/tests/src/com/android/shell/
H A DUiBot.java54 boolean gotIt = mDevice.wait(Until.hasObject(By.pkg(SYSTEMUI_PACKAGE)), mTimeout);
76 boolean gotIt = mDevice.wait(Until.hasObject(By.text(text)), mTimeout);
87 boolean gotIt = mDevice.wait(Until.hasObject(By.res(id)), mTimeout);
146 boolean gotIt = mDevice.wait(Until.hasObject(By.text(shareText)), mTimeout);
175 boolean gotIt = mDevice.wait(Until.hasObject(By.res("android", "button_once")), mTimeout);
/frameworks/base/cmds/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
H A DEventsCommand.java64 // there's really no way to stop, essentially we just block indefinitely here and wait
68 mQuitLock.wait();
/frameworks/base/core/tests/coretests/src/android/widget/
H A DTextViewActivity.java69 mHasWindowFocusLock.wait(durationMillis);
/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
H A DTest.java39 mBundle.wait();
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
H A DFrameworkPerfTest.java25 activity.mResultNotifier.wait(TEST_TIMEOUT);
/frameworks/native/services/powermanager/
H A DIPowerManager.cpp109 virtual status_t reboot(bool confirm, const String16& reason, bool wait) argument
115 data.writeInt32(wait);
119 virtual status_t shutdown(bool confirm, const String16& reason, bool wait) argument
125 data.writeInt32(wait);

Completed in 511 milliseconds

1234567891011