Searched defs:wait (Results 1 - 10 of 10) sorted by relevance

/frameworks/rs/
H A DrsSignal.cpp71 bool Signal::wait(uint64_t timeout) { function in class:Signal
/frameworks/base/libs/hwui/thread/
H A DBarrier.h41 void wait() const { function in class:android::uirenderer::Barrier
44 mCondition.wait(mLock);
H A DSignal.h38 void wait() { function in class:android::uirenderer::Signal
41 mCondition.wait(mLock);
/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/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
60 status_t wait(Mutex& mutex);
105 inline status_t Condition::wait(Mutex& mutex) { function in class:android::Condition
/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/native/libs/ui/
H A DFence.cpp48 status_t Fence::wait(unsigned int timeout) { function in class:android::Fence
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp1156 mCondition.wait(mLock);
1212 ALOGV("wait for prepare");
1213 if (cache->wait() != NO_ERROR) goto Exit;
1218 ALOGV("wait for playback complete");
1219 cache->wait();
1262 ALOGV("wait for prepare");
1263 if (cache->wait() != NO_ERROR) goto Exit;
1268 ALOGV("wait for playback complete");
1269 cache->wait();
1840 status_t MediaPlayerService::AudioCache::wait() function in class:android::MediaPlayerService::AudioCache
[all...]
/frameworks/base/services/java/com/android/server/power/
H A DPowerManagerService.java207 // If true, instructs the display controller to wait for the proximity sensor to
1827 * @param wait If true, this call waits for the reboot to complete and does not return.
1830 public void reboot(boolean confirm, String reason, boolean wait) { argument
1835 shutdownOrRebootInternal(false, confirm, reason, wait);
1845 * @param wait If true, this call waits for the shutdown to complete and does not return.
1848 public void shutdown(boolean confirm, boolean wait) { argument
1853 shutdownOrRebootInternal(true, confirm, null, wait);
1860 final String reason, boolean wait) {
1883 // PowerManager.reboot() is documented not to return so just wait for the inevitable.
1884 if (wait) {
1859 shutdownOrRebootInternal(final boolean shutdown, final boolean confirm, final String reason, boolean wait) argument
[all...]

Completed in 366 milliseconds