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

/frameworks/rs/
H A DrsSignal.cpp72 bool Signal::wait(uint64_t timeout) { function in class:Signal
/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);
/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);
H A DMessageQueue.h49 void wait() const { barrier.wait(); } function in class:android::MessageBase
/frameworks/base/services/tests/servicestests/src/com/android/server/connectivity/
H A DDnsEventListenerServiceTest.java177 void verifyLoggedEvents(int wait, DnsEvent... expectedEvents) { argument
178 verify(mLog, timeout(wait).times(expectedEvents.length)).log(mEvCaptor.capture());
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DOutputPort.java29 * output port is set to wait until it becomes free (see {@link #setWaitsUntilAvailable(boolean)}),
101 * Sets whether to wait until this port becomes available before processing.
105 * @param wait true, if filter should wait for the port to become available before processing.
108 public void setWaitsUntilAvailable(boolean wait) { argument
109 mWaitsUntilAvailable = wait;
H A DInputPort.java26 * {@link #pullFrame()} on an input port. If the input port is set to wait for an input frame
220 * Sets whether to wait for a frame on this port before processing.
224 * @param wait true, if the Filter should wait for a Frame before processing.
227 public void setWaitsForFrame(boolean wait) { argument
228 mWaitForFrame = wait;
/frameworks/native/libs/ui/
H A DFence.cpp51 status_t Fence::wait(int timeout) { function in class:android::Fence
/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);
/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/native/libs/binder/tests/
H A DbinderThroughputTest.cpp15 #include <sys/wait.h>
77 void wait() { function in class:Pipe
183 p.wait();
213 // Signal completion to master and wait.
215 p.wait();
217 // Send results to master and wait for go to exit.
219 p.wait();
243 v[i].wait();
276 // Create all the workers and wait for them to spawn.
283 // Run the workers and wait fo
[all...]
/frameworks/base/core/java/android/os/
H A DPowerManager.java1011 * @param wait If true, this call waits for the shutdown to complete and does not return.
1015 public void shutdown(boolean confirm, String reason, boolean wait) { argument
1017 mService.shutdown(confirm, reason, wait);
/frameworks/base/services/core/java/com/android/server/power/
H A DPowerManagerService.java237 // If true, instructs the display controller to wait for the proximity sensor to
1395 return; // wait until dream has enabled dozing
1975 // If preconditions changed, wait for the next iteration to determine
1978 return; // wait for next cycle
2474 final String reason, boolean wait) {
2499 // PowerManager.reboot() is documented not to return so just wait for the inevitable.
2500 if (wait) {
2504 runnable.wait();
3581 * @param wait If true, this call waits for the reboot to complete and does not return.
3584 public void reboot(boolean confirm, String reason, boolean wait) { argument
2473 shutdownOrRebootInternal(final @HaltMode int haltMode, final boolean confirm, final String reason, boolean wait) argument
3606 rebootSafeMode(boolean confirm, boolean wait) argument
3625 shutdown(boolean confirm, String reason, boolean wait) argument
[all...]

Completed in 557 milliseconds