Searched refs:wait (Results 276 - 300 of 323) sorted by relevance

<<111213

/frameworks/av/services/soundtrigger/
H A DSoundTriggerHwService.cpp453 mCallbackCond.wait(mCallbackLock);
/frameworks/base/core/tests/overlaytests/
H A Dtestrunner.py72 self.cond_var.wait(0.25)
386 argv = shlex.split(adb + ' wait-for-device')
/frameworks/base/libs/hwui/renderthread/
H A DRenderProxy.cpp730 mSyncCondition.wait(mSyncMutex);
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
H A DPageContentRepository.java750 mLock.wait();
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DTiledImageRenderer.java807 mQueueLock.wait();
/frameworks/base/services/backup/java/com/android/server/backup/
H A DRefactoredBackupManagerService.java608 * used in various places to 'wait' for notifyAll and detect change of pending state of an
1511 // success; wait for the agent to arrive
1512 // only wait 10 seconds for the bind to happen
1517 mAgentConnectLock.wait(5000);
1575 // only wait 10 seconds for the clear data to happen
1579 mClearDataLock.wait(5000);
1794 mCurrentOpLock.wait();
1797 // When the wait is notified we loop around and recheck the current state
2485 // wait for the backup to be performed
2593 // wait fo
[all...]
H A DBackupManagerService.java688 * used in various places to 'wait' for notifyAll and detect change of pending state of an
2269 // success; wait for the agent to arrive
2270 // only wait 10 seconds for the bind to happen
2275 mAgentConnectLock.wait(5000);
2331 // only wait 10 seconds for the clear data to happen
2335 mClearDataLock.wait(5000);
2552 mCurrentOpLock.wait();
2555 // When the wait is notified we loop around and recheck the current state
3692 this.wait();
4976 // Also ask the transport how long it wants us to wait befor
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DVibratorService.java807 this.wait(durationRemaining);
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowSurfacePlacer.java190 tmp.wait(250);
522 // for our transition because we need to wait for the rotation animation to finish.
561 // We also need to wait for the specs to be fetched, if needed.
/frameworks/ml/nn/runtime/
H A DExecutionPlan.cpp63 preparedModelCallback->wait();
/frameworks/native/cmds/installd/
H A Dotapreopt.cpp29 #include <sys/wait.h>
1005 // wait for subprocess to finish
H A Dutils.cpp24 #include <sys/wait.h>
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DSubscriptionMonitorTest.java79 lock.wait();
/frameworks/av/media/libstagefright/omx/
H A DOMXNodeInstance.cpp322 mQueueChanged.wait(mLock);
1728 // propagate fence if component supports it; wait for it otherwise
1744 return fence->wait(IOMX::kFenceTimeoutMs);
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityStarter.java845 mService.wait();
870 mService.wait();
/frameworks/native/opengl/libagl/
H A Degl.cpp398 // wait for the buffer
400 if (fence->wait(Fence::TIMEOUT_NEVER) != NO_ERROR) {
550 if (fence->wait(Fence::TIMEOUT_NEVER)) {
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyService.cpp581 // has a finite delay. So unless we are exiting it is safe to wait.
585 mWaitWorkCV.wait(mLock);
909 // force delayMs to non 0 so that code below does not request to wait for
923 // force delayMs to non 0 so that code below does not request to wait for
935 // force delayMs to non 0 so that code below does not request to wait for
980 // force delayMs to non 0 so that code below does not request to wait for
1013 // Disable wait for status if delay is not 0.
/frameworks/base/services/core/java/com/android/server/audio/
H A DAudioService.java816 // (To do that, the activity manager would need to wait until it knows for sure
1009 wait();
2761 reply.wait(SOUND_EFFECTS_LOAD_TIMEOUT_MS);
2813 // do not wait ack for samples rejected upfront by SoundPool
4732 mSoundEffectsLock.wait(SOUND_EFFECTS_LOAD_TIMEOUT_MS);
4788 // wait for all samples to be loaded
4796 mSoundEffectsLock.wait(SOUND_EFFECTS_LOAD_TIMEOUT_MS);
/frameworks/base/services/core/java/com/android/server/display/
H A DDisplayManagerService.java326 mSyncRoot.wait(delay);
/frameworks/base/services/net/java/android/net/ip/
H A DIpManager.java156 wait();
1321 // so we neither react to nor need to wait for changes in either.
1395 // There's no DHCPv4 for which to wait; proceed to stopped.
/frameworks/native/cmds/dumpstate/
H A Dutils.cpp37 #include <sys/wait.h>
1078 /* wait for the writable-close notification from inotify */
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer_hwc1.cpp1297 mCondition.wait(mLock);
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp247 // but since /data may be encrypted, we need to wait until after vold
374 // wait patiently for the window manager death
1134 msg->wait();
2868 // For window updates that are part of an animation we must wait for
2927 // if this is a synchronous transaction, wait for it to take effect
4339 captureCondition.wait(captureLock, [&]() { return captureResult; });
4346 captureCondition.wait(captureLock, [&]() { return captureResult; });
4512 // wait on it directly.
4536 ALOGW("captureScreen: fence wait timed out");
/frameworks/av/services/audioflinger/
H A DThreads.cpp122 // maximum time to wait in sendConfigEvent_l() for a status to be received
553 // mWaitWorkCV.wait(...);
2549 // must push a NULL and wait for ack
2685 // do not wait for async callback in case of error of full write
2974 // suspended mode (for now) to help schedule the wait time until next iteration.
3098 ALOGV("wait async completion (wait time: %lld)", (long long)waitNs);
3123 // we're about to wait, flush the binder command buffer
3133 // wait until we have something to do...
3135 mWaitWorkCV.wait(mLoc
[all...]
/frameworks/base/core/java/android/app/assist/
H A DAssistStructure.java2120 wait(endTime-now);

Completed in 611 milliseconds

<<111213