Searched refs:stopped (Results 1 - 25 of 33) 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;
H A DSettings.java203 private static final String ATTR_STOPPED = "stopped";
424 mStoppedPackagesFilename = new File(mSystemDir, "packages-stopped.xml");
425 mBackupStoppedPackagesFilename = new File(mSystemDir, "packages-stopped-backup.xml");
782 // If this is not a system app, it starts out stopped.
805 true, // stopped,
1576 mReadMessages.append("Reading from backup stopped packages file\n");
1578 "Need to read from backup stopped packages file");
1583 Slog.w(PackageManagerService.TAG, "Cleaning up stopped packages file "
1595 mReadMessages.append("No stopped packages file found\n");
1597 "No stopped package
4165 setPackageStoppedStateLPw(PackageManagerService pm, String packageName, boolean stopped, boolean allowedByPermission, int uid, int userId) argument
[all...]
/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.java175 boolean stopped; // is activity pause finished? field in class:ActivityRecord
176 boolean delayedResume; // not yet resumed because of stopped app switches?
348 pw.print(" stopped="); pw.print(stopped);
631 stopped = false;
893 if (stopped) {
1292 // another activity to start or has stopped, then the key dispatching
1294 if (mStackSupervisor.mWaitingVisibleActivities.contains(this) || stopped) {
1371 || this == task.stack.mPausingActivity || !haveState || !stopped) {
H A DUserController.java207 // Owner/System user and current user can't be stopped. We count it as running
215 // This is a user to be stopped.
452 * {@link #getUsersToStopLocked(int)} to determine the list of users that should be stopped.
462 // If one of related users is system or current, no related users should be stopped
471 "Force stop user " + userId + ". Related users will not be stopped");
591 boolean stopped;
596 stopped = false;
598 stopped = false;
600 stopped = true;
616 if (stopped) callback
[all...]
H A DActivityStack.java177 // How long we wait for the activity to tell us it has stopped before
1016 // Make sure any paused or stopped but visible activities are now sleeping.
1259 if (!r.stopped) {
1262 r.stopped = true;
1411 next.stopped = false;
2243 + ": user " + next.userId + " is stopped");
2303 // If the most recent activity was noHistory but was only stopped rather
2304 // than stopped+finished because the device went to sleep, we need to make
2347 // considered stopped.
2412 + " stopped
[all...]
/frameworks/base/libs/hwui/renderthread/
H A DRenderProxy.h82 ANDROID_API void setStopped(bool stopped);
H A DRenderProxy.cpp175 CREATE_BRIDGE2(setStopped, CanvasContext* context, bool stopped) { argument
176 args->context->setStopped(args->stopped);
180 void RenderProxy::setStopped(bool stopped) { argument
183 args->stopped = stopped;
H A DCanvasContext.h85 void setStopped(bool stopped);
192 // stopped indicates the CanvasContext will reject actual redraw operations,
193 // 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.java494 void setStopped(boolean stopped) { argument
495 nSetStopped(mNativeProxy, stopped);
995 private static native void nSetStopped(long nativeProxy, boolean stopped); argument
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
554 // 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/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.java325 boolean stopped; field in class:ActivityThread.ActivityClientRecord
364 stopped = false;
394 sb.append(", stopped=").append(stopped);
404 sb.append(", stopped=").append(activity.mStopped);
2626 r.stopped = true;
2629 r.stopped = false;
3424 r.stopped = false;
3770 // Tell activity manager we have been stopped.
3772 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.cpp694 jlong proxyPtr, jboolean stopped) {
696 proxy->setStopped(stopped);
693 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()) {
/frameworks/av/media/libmedia/
H A DAudioRecord.cpp372 bool AudioRecord::stopped() const function in class:android::AudioRecord
819 // Non-blocking if track is stopped

Completed in 1398 milliseconds

12