Searched refs:stopped (Results 1 - 25 of 44) sorted by relevance

12

/frameworks/base/cmds/webview_zygote/
H A Dwebview_zygote32.rc21 on property:init.svc.zygote=stopped
H A Dwebview_zygote64.rc21 on property:init.svc.zygote=stopped
/frameworks/rs/tests/lldb/tests/harness/
H A Dassert_mixins.py63 self, soname, func_name, x, y=None, z=None, stopped=True
78 if stopped:
83 r'Process \d+ stopped',
/frameworks/base/core/java/android/content/pm/
H A DPackageUserState.java43 public boolean stopped; field in class:PackageUserState
74 stopped = o.stopped;
184 if (stopped != oldState.stopped) {
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipWakeupTimer.java75 private boolean stopped() { method in class:SipWakeupTimer
77 if (DBG) log("Timer stopped");
152 if (stopped()) return;
178 if (stopped() || mEventQueue.isEmpty()) return;
208 if (stopped() || mEventQueue.isEmpty()) return;
256 if (stopped() || mEventQueue.isEmpty()) return;
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageSettingBase.java121 // Whether this package is currently stopped, thus can not be
384 return readUserState(userId).stopped;
388 modifyUserState(userId).stopped = stop;
431 void setUserState(int userId, long ceDataInode, int enabled, boolean installed, boolean stopped, argument
440 state.stopped = stopped;
609 proto.write(PackageProto.UserInfoProto.IS_STOPPED, state.stopped);
/frameworks/base/libs/hwui/renderthread/
H A DRenderProxy.h83 ANDROID_API void setStopped(bool stopped);
H A DRenderProxy.cpp179 CREATE_BRIDGE2(setStopped, CanvasContext* context, bool stopped) { argument
180 args->context->setStopped(args->stopped);
184 void RenderProxy::setStopped(bool stopped) { argument
187 args->stopped = stopped;
H A DCanvasContext.cpp218 void CanvasContext::setStopped(bool stopped) { argument
219 if (mStopped != stopped) {
220 mStopped = stopped;
H A DCanvasContext.h123 void setStopped(bool stopped);
221 // stopped indicates the CanvasContext will reject actual redraw operations,
222 // and defer repaint until it is un-stopped
/frameworks/base/core/java/android/view/
H A DThreadedRenderer.java512 void setStopped(boolean stopped) { argument
513 nSetStopped(mNativeProxy, stopped);
1018 private static native void nSetStopped(long nativeProxy, boolean stopped); argument
H A DWindowManagerGlobal.java605 public void setStoppedState(IBinder token, boolean stopped) { argument
611 root.setWindowStopped(stopped);
/frameworks/av/media/libaaudio/src/legacy/
H A DAudioStreamTrack.cpp320 if (mAudioTrack->stopped()) {
325 // Has stream really stopped advancing?
343 if (mAudioTrack->stopped()) {
H A DAudioStreamRecord.cpp261 if (mAudioRecord->stopped()) {
/frameworks/support/lifecycle/common/src/test/java/android/arch/lifecycle/
H A DReflectiveGenericLifecycleObserverTest.java143 verify(obj).stopped();
167 void stopped() {} method in class:ReflectiveGenericLifecycleObserverTest.AllMethodsListener
/frameworks/av/include/media/
H A DAudioRecord.h265 bool stopped() const;
382 * If the track buffer is empty and track is stopped, obtainBuffer() returns WOULD_BLOCK
384 * If the track buffer is empty and track is not stopped, obtainBuffer() blocks with a
430 * - The device ID used before paused or stopped.
498 * AudioRecord was stopped during the read
578 // Current client state: false = stopped, true = active. Protected by mLock. If more states
H A DAudioTrack.h391 * In static buffer mode, the track is stopped immediately.
395 * is first drained, mixed, and output, and only then is the track marked as stopped.
398 bool stopped() const;
400 /* Flush a stopped or paused track. All previously buffered data is discarded immediately.
403 * This function is a no-op if the track is not stopped or paused, or uses a static buffer.
530 * - INVALID_OPERATION: the AudioTrack is not stopped or paused, or is streaming mode.
558 * This method must be called with the AudioTrack in paused or stopped state.
563 * - INVALID_OPERATION: the AudioTrack is not stopped or paused, or is streaming mode.
610 * - The device ID used before paused or stopped.
655 * If the track buffer is full and track is stopped, obtainBuffe
[all...]
/frameworks/av/media/libaudioclient/include/media/
H A DAudioRecord.h265 bool stopped() const;
382 * If the track buffer is empty and track is stopped, obtainBuffer() returns WOULD_BLOCK
384 * If the track buffer is empty and track is not stopped, obtainBuffer() blocks with a
430 * - The device ID used before paused or stopped.
498 * AudioRecord was stopped during the read
578 // Current client state: false = stopped, true = active. Protected by mLock. If more states
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DPackageUserStateTest.java76 oldUserState.stopped = true;
H A DPackageManagerSettingsTests.java294 false /*stopped*/, false /*installed*/);
331 false /*stopped*/, true /*installed*/);
404 false /*notLaunched*/, false /*stopped*/, true /*installed*/);
443 // by default, the package is considered stopped
446 true /*notLaunched*/, true /*stopped*/, true /*installed*/);
490 false /*notLaunched*/, false /*stopped*/, true /*installed*/);
536 false /*notLaunched*/, false /*stopped*/, true /*installed*/);
577 false /*stopped*/, true /*installed*/);
581 boolean userStateChanged, boolean notLaunched, boolean stopped, boolean installed) {
586 assertThat(userState.stopped, i
580 verifyUserState(PackageUserState userState, PackageUserState oldUserState, boolean userStateChanged, boolean notLaunched, boolean stopped, boolean installed) argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityRecord.java279 boolean stopped; // is activity pause finished? field in class:ActivityRecord
280 boolean delayedResume; // not yet resumed because of stopped app switches?
487 pw.print(" stopped="); pw.print(stopped);
817 stopped = false;
1199 * the activity has requested to enter PiP when it would otherwise be stopped.
1286 if (stopped) {
1705 stopped = false;
1771 if (!stopped) {
1774 stopped
[all...]
H A DUserController.java226 // Owner/System user and current user can't be stopped. We count it as running
234 // This is a user to be stopped.
502 * {@link #getUsersToStopLocked(int)} to determine the list of users that should be stopped.
512 // If one of related users is system or current, no related users should be stopped
521 "Force stop user " + userId + ". Related users will not be stopped");
642 boolean stopped;
647 stopped = false;
649 stopped = false;
651 stopped = true;
667 if (stopped) callback
[all...]
/frameworks/base/media/jni/soundpool/
H A DSoundPool.cpp979 bool stopped; local
982 stopped = doStop_l();
985 if (stopped) {
/frameworks/base/core/java/android/app/
H A DActivityThread.java354 boolean stopped; field in class:ActivityThread.ActivityClientRecord
395 stopped = false;
433 sb.append(", stopped=").append(stopped);
443 sb.append(", stopped=").append(activity.mStopped);
2739 r.stopped = true;
2742 r.stopped = false;
3576 r.stopped = false;
3931 // Tell activity manager we have been stopped.
3933 if (DEBUG_MEMORY_TRIM) Slog.v(TAG, "Reporting activity stopped
[all...]
/frameworks/ex/widget/java/com/android/ex/widget/
H A DStaggeredGridView.java385 * @return true if the movement completed, false if it was stopped prematurely.
547 final boolean stopped = !trackMotionScroll(dy, false);
549 if (!stopped && !mScroller.isFinished()) {
552 if (stopped) {

Completed in 597 milliseconds

12