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

12

/frameworks/base/core/java/android/content/pm/
H A DPackageUserState.java41 public boolean stopped; field in class:PackageUserState
66 stopped = o.stopped;
H A DIPackageManager.aidl330 * Set whether the given package should be considered stopped, making
331 * it not visible to implicit intents that filter out stopped packages.
333 void setPackageStoppedState(String packageName, boolean stopped, int userId);
/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.java110 // Whether this package is currently stopped, thus can not be
338 return readUserState(userId).stopped;
342 modifyUserState(userId).stopped = stop;
377 void setUserState(int userId, long ceDataInode, int enabled, boolean installed, boolean stopped, argument
386 state.stopped = stopped;
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerShellCommand.java63 case "is-user-stopped":
80 boolean stopped = mInternal.isUserStopped(userId);
81 pw.println(stopped);
151 pw.println("Association tracking stopped.");
238 pw.println(" is-user-stopped <USER_ID>");
239 pw.println(" Returns whether <USER_ID> has been stopped or not.");
H A DActivityMetricsLogger.java137 if (!activity.stopped) {
152 * activity that was stopped, i.e. the started activity is "switching"
H A DActivityRecord.java174 boolean stopped; // is activity pause finished? field in class:ActivityRecord
175 boolean delayedResume; // not yet resumed because of stopped app switches?
340 pw.print(" stopped="); pw.print(stopped);
623 stopped = false;
876 if (stopped) {
935 // device is sleeping, then all activities are stopped, so in that
1271 // another activity to start or has stopped, then the key dispatching
1273 if (mStackSupervisor.mWaitingVisibleActivities.contains(this) || stopped) {
1346 || this == task.stack.mPausingActivity || !haveState || !stopped) {
[all...]
H A DUserController.java204 // Owner/System user and current user can't be stopped. We count it as running
212 // This is a user to be stopped.
433 * {@link #getUsersToStopLocked(int)} to determine the list of users that should be stopped.
443 // If one of related users is system or current, no related users should be stopped
452 "Force stop user " + userId + ". Related users will not be stopped");
572 boolean stopped;
577 stopped = false;
579 stopped = false;
581 stopped = true;
597 if (stopped) callback
[all...]
/frameworks/base/libs/hwui/renderthread/
H A DRenderProxy.h82 ANDROID_API void setStopped(bool stopped);
H A DRenderProxy.cpp171 CREATE_BRIDGE2(setStopped, CanvasContext* context, bool stopped) { argument
172 args->context->setStopped(args->stopped);
176 void RenderProxy::setStopped(bool stopped) { argument
179 args->stopped = stopped;
H A DCanvasContext.h85 void setStopped(bool stopped);
190 // stopped indicates the CanvasContext will reject actual redraw operations,
191 // and defer repaint until it is un-stopped
H A DCanvasContext.cpp144 void CanvasContext::setStopped(bool stopped) { argument
145 if (mStopped != stopped) {
146 mStopped = stopped;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DServiceMonitor.java219 boolean stopped = mContext.stopService(new Intent().setComponent(mServiceName));
220 if (mDebug) Log.d(mTag, " stopped=" + stopped);
/frameworks/base/core/java/android/view/
H A DThreadedRenderer.java492 void setStopped(boolean stopped) { argument
493 nSetStopped(mNativeProxy, stopped);
986 private static native void nSetStopped(long nativeProxy, boolean stopped); argument
H A DIWindowManager.aidl176 void notifyAppStopped(IBinder token, boolean stopped);
H A DWindowManagerGlobal.java593 public void setStoppedState(IBinder token, boolean stopped) { argument
599 root.setWindowStopped(stopped);
/frameworks/av/include/media/
H A DAudioRecord.h258 bool stopped() const;
369 * If the track buffer is empty and track is stopped, obtainBuffer() returns WOULD_BLOCK
371 * If the track buffer is empty and track is not stopped, obtainBuffer() blocks with a
476 * AudioRecord was stopped during the read
551 // Current client state: false = stopped, true = active. Protected by mLock. If more states
H A DAudioTrack.h386 * In static buffer mode, the track is stopped immediately.
390 * is first drained, mixed, and output, and only then is the track marked as stopped.
393 bool stopped() const;
395 /* Flush a stopped or paused track. All previously buffered data is discarded immediately.
398 * This function is a no-op if the track is not stopped or paused, or uses a static buffer.
525 * - INVALID_OPERATION: the AudioTrack is not stopped or paused, or is streaming mode.
553 * This method must be called with the AudioTrack in paused or stopped state.
558 * - INVALID_OPERATION: the AudioTrack is not stopped or paused, or is streaming mode.
640 * If the track buffer is full and track is stopped, obtainBuffer() returns WOULD_BLOCK
642 * If the track buffer is full and track is not stopped, obtainBuffe
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DAppWindowToken.java341 // we will skip destruction and try again when the client has stopped.
381 * If the application has stopped it is okay to destroy any surfaces which were keeping alive
384 void notifyAppStopped(boolean stopped) { argument
385 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppStopped: stopped=" + stopped + " " + this);
386 mAppStopped = stopped;
388 if (stopped) {
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DIWindowManagerImpl.java353 public void notifyAppStopped(IBinder token, boolean stopped) throws RemoteException { argument
/frameworks/base/media/jni/soundpool/
H A DSoundPool.cpp965 bool stopped; local
968 stopped = doStop_l();
971 if (stopped) {
/frameworks/base/core/java/android/app/
H A DActivityThread.java323 boolean stopped; field in class:ActivityThread.ActivityClientRecord
362 stopped = false;
392 sb.append(", stopped=").append(stopped);
402 sb.append(", stopped=").append(activity.mStopped);
2607 r.stopped = true;
2610 r.stopped = false;
3395 r.stopped = false;
3741 // Tell activity manager we have been stopped.
3743 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) {
/frameworks/base/core/jni/
H A Dandroid_view_ThreadedRenderer.cpp481 jlong proxyPtr, jboolean stopped) {
483 proxy->setStopped(stopped);
480 android_view_ThreadedRenderer_setStopped(JNIEnv* env, jobject clazz, jlong proxyPtr, jboolean stopped) argument
/frameworks/av/cmds/stagefright/
H A DSimplePlayer.cpp603 if (state->mAudioTrack->stopped()) {

Completed in 556 milliseconds

12