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

/frameworks/rs/
H A DrsSignal.cpp71 bool Signal::wait(uint64_t timeout) { function in class:Signal
/frameworks/support/renderscript/v8/rs_support/
H A DrsSignal.cpp71 bool Signal::wait(uint64_t timeout) { function in class:Signal
/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
55 status_t wait(Mutex& mutex);
92 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.cpp45 status_t Fence::wait(unsigned int timeout) { function in class:android::Fence
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp1142 mCondition.wait(mLock);
1198 ALOGV("wait for prepare");
1199 if (cache->wait() != NO_ERROR) goto Exit;
1204 ALOGV("wait for playback complete");
1205 cache->wait();
1248 ALOGV("wait for prepare");
1249 if (cache->wait() != NO_ERROR) goto Exit;
1254 ALOGV("wait for playback complete");
1255 cache->wait();
1826 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
1795 * @param wait If true, this call waits for the reboot to complete and does not return.
1798 public void reboot(boolean confirm, String reason, boolean wait) { argument
1803 shutdownOrRebootInternal(false, confirm, reason, wait);
1813 * @param wait If true, this call waits for the shutdown to complete and does not return.
1816 public void shutdown(boolean confirm, boolean wait) { argument
1821 shutdownOrRebootInternal(true, confirm, null, wait);
1828 final String reason, boolean wait) {
1851 // PowerManager.reboot() is documented not to return so just wait for the inevitable.
1852 if (wait) {
1827 shutdownOrRebootInternal(final boolean shutdown, final boolean confirm, final String reason, boolean wait) argument
[all...]

Completed in 2134 milliseconds