Loading core/java/android/app/ActivityThread.java +31 −22 Original line number Diff line number Diff line Loading @@ -175,6 +175,7 @@ public final class ActivityThread { private static final int SQLITE_MEM_RELEASED_EVENT_LOG_TAG = 75003; private static final int LOG_AM_ON_PAUSE_CALLED = 30021; private static final int LOG_AM_ON_RESUME_CALLED = 30022; private static final int LOG_AM_ON_STOP_CALLED = 30049; /** Type for IActivityManager.serviceDoneExecuting: anonymous operation */ public static final int SERVICE_DONE_EXECUTING_ANON = 0; Loading Loading @@ -1407,7 +1408,7 @@ public final class ActivityThread { r.packageInfo = getPackageInfoNoCheck( r.activityInfo.applicationInfo, r.compatInfo); handleLaunchActivity(r, null); handleLaunchActivity(r, null, "LAUNCH_ACTIVITY"); Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER); } break; case RELAUNCH_ACTIVITY: { Loading Loading @@ -1458,7 +1459,7 @@ public final class ActivityThread { Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityResume"); SomeArgs args = (SomeArgs) msg.obj; handleResumeActivity((IBinder) args.arg1, true, args.argi1 != 0, true, args.argi3); args.argi3, "RESUME_ACTIVITY"); Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER); break; case SEND_RESULT: Loading Loading @@ -2631,7 +2632,7 @@ public final class ActivityThread { return baseContext; } private void handleLaunchActivity(ActivityClientRecord r, Intent customIntent) { private void handleLaunchActivity(ActivityClientRecord r, Intent customIntent, String reason) { // If we are getting ready to gc after going to the background, well // we are back active so skip it. unscheduleGcIdler(); Loading @@ -2658,7 +2659,7 @@ public final class ActivityThread { reportSizeConfigurations(r); Bundle oldState = r.state; handleResumeActivity(r.token, false, r.isForward, !r.activity.mFinished && !r.startsNotResumed, r.lastProcessedSeq); !r.activity.mFinished && !r.startsNotResumed, r.lastProcessedSeq, reason); if (!r.activity.mFinished && r.startsNotResumed) { // The activity manager actually wants this one to start out Loading @@ -2673,6 +2674,8 @@ public final class ActivityThread { try { r.activity.mCalled = false; mInstrumentation.callActivityOnPause(r.activity); EventLog.writeEvent(LOG_AM_ON_PAUSE_CALLED, UserHandle.myUserId(), r.activity.getComponentName().getClassName(), reason); // We need to keep around the original state, in case // we need to be created again. But we only do this // for pre-Honeycomb apps, which always save their state Loading Loading @@ -3320,7 +3323,7 @@ public final class ActivityThread { } public final ActivityClientRecord performResumeActivity(IBinder token, boolean clearHide) { boolean clearHide, String reason) { ActivityClientRecord r = mActivities.get(token); if (localLOGV) Slog.v(TAG, "Performing resume of " + r + " finished=" + r.activity.mFinished); Loading @@ -3342,8 +3345,8 @@ public final class ActivityThread { } r.activity.performResume(); EventLog.writeEvent(LOG_AM_ON_RESUME_CALLED, UserHandle.myUserId(), r.activity.getComponentName().getClassName()); EventLog.writeEvent(LOG_AM_ON_RESUME_CALLED, UserHandle.myUserId(), r.activity.getComponentName().getClassName(), reason); r.paused = false; r.stopped = false; Loading Loading @@ -3379,7 +3382,7 @@ public final class ActivityThread { } final void handleResumeActivity(IBinder token, boolean clearHide, boolean isForward, boolean reallyResume, int seq) { boolean clearHide, boolean isForward, boolean reallyResume, int seq, String reason) { ActivityClientRecord r = mActivities.get(token); if (!checkAndUpdateLifecycleSeq(seq, r, "resumeActivity")) { return; Loading @@ -3391,7 +3394,7 @@ public final class ActivityThread { mSomeActivitiesChanged = true; // TODO Push resumeArgs into the activity for consideration r = performResumeActivity(token, clearHide); r = performResumeActivity(token, clearHide, reason); if (r != null) { final Activity a = r.activity; Loading Loading @@ -3583,7 +3586,7 @@ public final class ActivityThread { } r.activity.mConfigChangeFlags |= configChanges; performPauseActivity(token, finished, r.isPreHoneycomb()); performPauseActivity(token, finished, r.isPreHoneycomb(), "handlePauseActivity"); // Make sure any pending writes are now committed. if (r.isPreHoneycomb()) { Loading @@ -3607,13 +3610,13 @@ public final class ActivityThread { } final Bundle performPauseActivity(IBinder token, boolean finished, boolean saveState) { boolean saveState, String reason) { ActivityClientRecord r = mActivities.get(token); return r != null ? performPauseActivity(r, finished, saveState) : null; return r != null ? performPauseActivity(r, finished, saveState, reason) : null; } final Bundle performPauseActivity(ActivityClientRecord r, boolean finished, boolean saveState) { boolean saveState, String reason) { if (r.paused) { if (r.activity.mFinished) { // If we are finishing, we won't call onResume() in certain cases. Loading @@ -3638,7 +3641,7 @@ public final class ActivityThread { r.activity.mCalled = false; mInstrumentation.callActivityOnPause(r.activity); EventLog.writeEvent(LOG_AM_ON_PAUSE_CALLED, UserHandle.myUserId(), r.activity.getComponentName().getClassName()); r.activity.getComponentName().getClassName(), reason); if (!r.activity.mCalled) { throw new SuperNotCalledException( "Activity " + r.intent.getComponent().toShortString() + Loading Loading @@ -3671,9 +3674,9 @@ public final class ActivityThread { return !r.activity.mFinished && saveState ? r.state : null; } final void performStopActivity(IBinder token, boolean saveState) { final void performStopActivity(IBinder token, boolean saveState, String reason) { ActivityClientRecord r = mActivities.get(token); performStopActivityInner(r, null, false, saveState); performStopActivityInner(r, null, false, saveState, reason); } private static class StopInfo implements Runnable { Loading Loading @@ -3731,7 +3734,7 @@ public final class ActivityThread { * the activity's UI visibillity changes. */ private void performStopActivityInner(ActivityClientRecord r, StopInfo info, boolean keepShown, boolean saveState) { StopInfo info, boolean keepShown, boolean saveState, String reason) { if (localLOGV) Slog.v(TAG, "Performing stop of " + r); if (r != null) { if (!keepShown && r.stopped) { Loading Loading @@ -3783,6 +3786,8 @@ public final class ActivityThread { } } r.stopped = true; EventLog.writeEvent(LOG_AM_ON_STOP_CALLED, UserHandle.myUserId(), r.activity.getComponentName().getClassName(), reason); } r.paused = true; Loading Loading @@ -3829,7 +3834,7 @@ public final class ActivityThread { r.activity.mConfigChangeFlags |= configChanges; StopInfo info = new StopInfo(); performStopActivityInner(r, info, show, true); performStopActivityInner(r, info, show, true, "handleStopActivity"); if (localLOGV) Slog.v( TAG, "Finishing stop of " + r + ": show=" + show Loading Loading @@ -3885,7 +3890,7 @@ public final class ActivityThread { } if (!show && !r.stopped) { performStopActivityInner(r, null, show, false); performStopActivityInner(r, null, show, false, "handleWindowVisibility"); } else if (show && r.stopped) { // If we are getting ready to gc after going to the background, well // we are back active so skip it. Loading Loading @@ -3924,6 +3929,8 @@ public final class ActivityThread { } } r.stopped = true; EventLog.writeEvent(LOG_AM_ON_STOP_CALLED, UserHandle.myUserId(), r.activity.getComponentName().getClassName(), "sleeping"); } // Make sure any pending writes are now committed. Loading Loading @@ -4065,7 +4072,7 @@ public final class ActivityThread { r.activity.mCalled = false; mInstrumentation.callActivityOnPause(r.activity); EventLog.writeEvent(LOG_AM_ON_PAUSE_CALLED, UserHandle.myUserId(), r.activity.getComponentName().getClassName()); r.activity.getComponentName().getClassName(), "destroy"); if (!r.activity.mCalled) { throw new SuperNotCalledException( "Activity " + safeToComponentShortString(r.intent) Loading Loading @@ -4097,6 +4104,8 @@ public final class ActivityThread { } } r.stopped = true; EventLog.writeEvent(LOG_AM_ON_STOP_CALLED, UserHandle.myUserId(), r.activity.getComponentName().getClassName(), "destroy"); } if (getNonConfigInstance) { try { Loading Loading @@ -4396,7 +4405,7 @@ public final class ActivityThread { // Need to ensure state is saved. if (!r.paused) { performPauseActivity(r.token, false, r.isPreHoneycomb()); performPauseActivity(r.token, false, r.isPreHoneycomb(), "handleRelaunchActivity"); } if (r.state == null && !r.stopped && !r.isPreHoneycomb()) { callCallActivityOnSaveInstanceState(r); Loading Loading @@ -4426,7 +4435,7 @@ public final class ActivityThread { r.startsNotResumed = tmp.startsNotResumed; r.overrideConfig = tmp.overrideConfig; handleLaunchActivity(r, currentIntent); handleLaunchActivity(r, currentIntent, "handleRelaunchActivity"); if (!tmp.onlyLocalRequest) { try { Loading core/java/android/app/LocalActivityManager.java +8 −8 Original line number Diff line number Diff line Loading @@ -144,7 +144,7 @@ public class LocalActivityManager { if (desiredState == RESUMED) { if (localLOGV) Log.v(TAG, r.id + ": resuming"); mActivityThread.performResumeActivity(r, true); mActivityThread.performResumeActivity(r, true, "moveToState-INITIALIZING"); r.curState = RESUMED; } Loading @@ -167,7 +167,7 @@ public class LocalActivityManager { if (desiredState == RESUMED) { if (localLOGV) Log.v(TAG, r.id + ": restarting and resuming"); mActivityThread.performRestartActivity(r); mActivityThread.performResumeActivity(r, true); mActivityThread.performResumeActivity(r, true, "moveToState-CREATED"); r.curState = RESUMED; } return; Loading @@ -176,13 +176,13 @@ public class LocalActivityManager { if (desiredState == RESUMED) { // Need to resume it... if (localLOGV) Log.v(TAG, r.id + ": resuming"); mActivityThread.performResumeActivity(r, true); mActivityThread.performResumeActivity(r, true, "moveToState-STARTED"); r.instanceState = null; r.curState = RESUMED; } if (desiredState == CREATED) { if (localLOGV) Log.v(TAG, r.id + ": stopping"); mActivityThread.performStopActivity(r, false); mActivityThread.performStopActivity(r, false, "moveToState-STARTED"); r.curState = CREATED; } return; Loading @@ -197,7 +197,7 @@ public class LocalActivityManager { if (localLOGV) Log.v(TAG, r.id + ": pausing"); performPause(r, mFinishing); if (localLOGV) Log.v(TAG, r.id + ": stopping"); mActivityThread.performStopActivity(r, false); mActivityThread.performStopActivity(r, false, "moveToState-RESUMED"); r.curState = CREATED; } return; Loading @@ -205,9 +205,9 @@ public class LocalActivityManager { } private void performPause(LocalActivityRecord r, boolean finishing) { boolean needState = r.instanceState == null; Bundle instanceState = mActivityThread.performPauseActivity(r, finishing, needState); final boolean needState = r.instanceState == null; final Bundle instanceState = mActivityThread.performPauseActivity( r, finishing, needState, "performPause"); if (needState) { r.instanceState = instanceState; } Loading services/core/java/com/android/server/am/ActivityStack.java +2 −0 Original line number Diff line number Diff line Loading @@ -3005,6 +3005,8 @@ final class ActivityStack { if (!r.visible) { mWindowManager.setAppVisibility(r.appToken, false); } EventLogTags.writeAmStopActivity( r.userId, System.identityHashCode(r), r.shortComponentName); r.app.thread.scheduleStopActivity(r.appToken, r.visible, r.configChangeFlags); if (mService.isSleepingOrShuttingDown()) { r.setSleeping(true); Loading services/core/java/com/android/server/am/EventLogTags.logtags +7 −2 Original line number Diff line number Diff line Loading @@ -54,9 +54,9 @@ option java_package com.android.server.am # An activity has been relaunched: 30020 am_relaunch_activity (User|1|5),(Token|1|5),(Task ID|1|5),(Component Name|3) # The activity's onPause has been called. 30021 am_on_paused_called (User|1|5),(Component Name|3) 30021 am_on_paused_called (User|1|5),(Component Name|3),(Reason|3) # The activity's onResume has been called. 30022 am_on_resume_called (User|1|5),(Component Name|3) 30022 am_on_resume_called (User|1|5),(Component Name|3),(Reason|3) # Kill a process to reclaim memory. 30023 am_kill (User|1|5),(PID|1|5),(Process Name|3),(OomAdj|1|5),(Reason|3) # Discard an undelivered serialized broadcast (timeout/ANR/crash) Loading Loading @@ -103,3 +103,8 @@ option java_package com.android.server.am 30046 am_meminfo (Cached|2|2),(Free|2|2),(Zram|2|2),(Kernel|2|2),(Native|2|2) # Report collection of memory used by a process 30047 am_pss (Pid|1|5),(UID|1|5),(Process Name|3),(Pss|2|2),(Uss|2|2),(SwapPss|2|2) # Attempting to stop an activity 30048 am_stop_activity (User|1|5),(Token|1|5),(Component Name|3) # The activity's onStop has been called. 30049 am_on_stop_called (User|1|5),(Component Name|3),(Reason|3) Loading
core/java/android/app/ActivityThread.java +31 −22 Original line number Diff line number Diff line Loading @@ -175,6 +175,7 @@ public final class ActivityThread { private static final int SQLITE_MEM_RELEASED_EVENT_LOG_TAG = 75003; private static final int LOG_AM_ON_PAUSE_CALLED = 30021; private static final int LOG_AM_ON_RESUME_CALLED = 30022; private static final int LOG_AM_ON_STOP_CALLED = 30049; /** Type for IActivityManager.serviceDoneExecuting: anonymous operation */ public static final int SERVICE_DONE_EXECUTING_ANON = 0; Loading Loading @@ -1407,7 +1408,7 @@ public final class ActivityThread { r.packageInfo = getPackageInfoNoCheck( r.activityInfo.applicationInfo, r.compatInfo); handleLaunchActivity(r, null); handleLaunchActivity(r, null, "LAUNCH_ACTIVITY"); Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER); } break; case RELAUNCH_ACTIVITY: { Loading Loading @@ -1458,7 +1459,7 @@ public final class ActivityThread { Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityResume"); SomeArgs args = (SomeArgs) msg.obj; handleResumeActivity((IBinder) args.arg1, true, args.argi1 != 0, true, args.argi3); args.argi3, "RESUME_ACTIVITY"); Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER); break; case SEND_RESULT: Loading Loading @@ -2631,7 +2632,7 @@ public final class ActivityThread { return baseContext; } private void handleLaunchActivity(ActivityClientRecord r, Intent customIntent) { private void handleLaunchActivity(ActivityClientRecord r, Intent customIntent, String reason) { // If we are getting ready to gc after going to the background, well // we are back active so skip it. unscheduleGcIdler(); Loading @@ -2658,7 +2659,7 @@ public final class ActivityThread { reportSizeConfigurations(r); Bundle oldState = r.state; handleResumeActivity(r.token, false, r.isForward, !r.activity.mFinished && !r.startsNotResumed, r.lastProcessedSeq); !r.activity.mFinished && !r.startsNotResumed, r.lastProcessedSeq, reason); if (!r.activity.mFinished && r.startsNotResumed) { // The activity manager actually wants this one to start out Loading @@ -2673,6 +2674,8 @@ public final class ActivityThread { try { r.activity.mCalled = false; mInstrumentation.callActivityOnPause(r.activity); EventLog.writeEvent(LOG_AM_ON_PAUSE_CALLED, UserHandle.myUserId(), r.activity.getComponentName().getClassName(), reason); // We need to keep around the original state, in case // we need to be created again. But we only do this // for pre-Honeycomb apps, which always save their state Loading Loading @@ -3320,7 +3323,7 @@ public final class ActivityThread { } public final ActivityClientRecord performResumeActivity(IBinder token, boolean clearHide) { boolean clearHide, String reason) { ActivityClientRecord r = mActivities.get(token); if (localLOGV) Slog.v(TAG, "Performing resume of " + r + " finished=" + r.activity.mFinished); Loading @@ -3342,8 +3345,8 @@ public final class ActivityThread { } r.activity.performResume(); EventLog.writeEvent(LOG_AM_ON_RESUME_CALLED, UserHandle.myUserId(), r.activity.getComponentName().getClassName()); EventLog.writeEvent(LOG_AM_ON_RESUME_CALLED, UserHandle.myUserId(), r.activity.getComponentName().getClassName(), reason); r.paused = false; r.stopped = false; Loading Loading @@ -3379,7 +3382,7 @@ public final class ActivityThread { } final void handleResumeActivity(IBinder token, boolean clearHide, boolean isForward, boolean reallyResume, int seq) { boolean clearHide, boolean isForward, boolean reallyResume, int seq, String reason) { ActivityClientRecord r = mActivities.get(token); if (!checkAndUpdateLifecycleSeq(seq, r, "resumeActivity")) { return; Loading @@ -3391,7 +3394,7 @@ public final class ActivityThread { mSomeActivitiesChanged = true; // TODO Push resumeArgs into the activity for consideration r = performResumeActivity(token, clearHide); r = performResumeActivity(token, clearHide, reason); if (r != null) { final Activity a = r.activity; Loading Loading @@ -3583,7 +3586,7 @@ public final class ActivityThread { } r.activity.mConfigChangeFlags |= configChanges; performPauseActivity(token, finished, r.isPreHoneycomb()); performPauseActivity(token, finished, r.isPreHoneycomb(), "handlePauseActivity"); // Make sure any pending writes are now committed. if (r.isPreHoneycomb()) { Loading @@ -3607,13 +3610,13 @@ public final class ActivityThread { } final Bundle performPauseActivity(IBinder token, boolean finished, boolean saveState) { boolean saveState, String reason) { ActivityClientRecord r = mActivities.get(token); return r != null ? performPauseActivity(r, finished, saveState) : null; return r != null ? performPauseActivity(r, finished, saveState, reason) : null; } final Bundle performPauseActivity(ActivityClientRecord r, boolean finished, boolean saveState) { boolean saveState, String reason) { if (r.paused) { if (r.activity.mFinished) { // If we are finishing, we won't call onResume() in certain cases. Loading @@ -3638,7 +3641,7 @@ public final class ActivityThread { r.activity.mCalled = false; mInstrumentation.callActivityOnPause(r.activity); EventLog.writeEvent(LOG_AM_ON_PAUSE_CALLED, UserHandle.myUserId(), r.activity.getComponentName().getClassName()); r.activity.getComponentName().getClassName(), reason); if (!r.activity.mCalled) { throw new SuperNotCalledException( "Activity " + r.intent.getComponent().toShortString() + Loading Loading @@ -3671,9 +3674,9 @@ public final class ActivityThread { return !r.activity.mFinished && saveState ? r.state : null; } final void performStopActivity(IBinder token, boolean saveState) { final void performStopActivity(IBinder token, boolean saveState, String reason) { ActivityClientRecord r = mActivities.get(token); performStopActivityInner(r, null, false, saveState); performStopActivityInner(r, null, false, saveState, reason); } private static class StopInfo implements Runnable { Loading Loading @@ -3731,7 +3734,7 @@ public final class ActivityThread { * the activity's UI visibillity changes. */ private void performStopActivityInner(ActivityClientRecord r, StopInfo info, boolean keepShown, boolean saveState) { StopInfo info, boolean keepShown, boolean saveState, String reason) { if (localLOGV) Slog.v(TAG, "Performing stop of " + r); if (r != null) { if (!keepShown && r.stopped) { Loading Loading @@ -3783,6 +3786,8 @@ public final class ActivityThread { } } r.stopped = true; EventLog.writeEvent(LOG_AM_ON_STOP_CALLED, UserHandle.myUserId(), r.activity.getComponentName().getClassName(), reason); } r.paused = true; Loading Loading @@ -3829,7 +3834,7 @@ public final class ActivityThread { r.activity.mConfigChangeFlags |= configChanges; StopInfo info = new StopInfo(); performStopActivityInner(r, info, show, true); performStopActivityInner(r, info, show, true, "handleStopActivity"); if (localLOGV) Slog.v( TAG, "Finishing stop of " + r + ": show=" + show Loading Loading @@ -3885,7 +3890,7 @@ public final class ActivityThread { } if (!show && !r.stopped) { performStopActivityInner(r, null, show, false); performStopActivityInner(r, null, show, false, "handleWindowVisibility"); } else if (show && r.stopped) { // If we are getting ready to gc after going to the background, well // we are back active so skip it. Loading Loading @@ -3924,6 +3929,8 @@ public final class ActivityThread { } } r.stopped = true; EventLog.writeEvent(LOG_AM_ON_STOP_CALLED, UserHandle.myUserId(), r.activity.getComponentName().getClassName(), "sleeping"); } // Make sure any pending writes are now committed. Loading Loading @@ -4065,7 +4072,7 @@ public final class ActivityThread { r.activity.mCalled = false; mInstrumentation.callActivityOnPause(r.activity); EventLog.writeEvent(LOG_AM_ON_PAUSE_CALLED, UserHandle.myUserId(), r.activity.getComponentName().getClassName()); r.activity.getComponentName().getClassName(), "destroy"); if (!r.activity.mCalled) { throw new SuperNotCalledException( "Activity " + safeToComponentShortString(r.intent) Loading Loading @@ -4097,6 +4104,8 @@ public final class ActivityThread { } } r.stopped = true; EventLog.writeEvent(LOG_AM_ON_STOP_CALLED, UserHandle.myUserId(), r.activity.getComponentName().getClassName(), "destroy"); } if (getNonConfigInstance) { try { Loading Loading @@ -4396,7 +4405,7 @@ public final class ActivityThread { // Need to ensure state is saved. if (!r.paused) { performPauseActivity(r.token, false, r.isPreHoneycomb()); performPauseActivity(r.token, false, r.isPreHoneycomb(), "handleRelaunchActivity"); } if (r.state == null && !r.stopped && !r.isPreHoneycomb()) { callCallActivityOnSaveInstanceState(r); Loading Loading @@ -4426,7 +4435,7 @@ public final class ActivityThread { r.startsNotResumed = tmp.startsNotResumed; r.overrideConfig = tmp.overrideConfig; handleLaunchActivity(r, currentIntent); handleLaunchActivity(r, currentIntent, "handleRelaunchActivity"); if (!tmp.onlyLocalRequest) { try { Loading
core/java/android/app/LocalActivityManager.java +8 −8 Original line number Diff line number Diff line Loading @@ -144,7 +144,7 @@ public class LocalActivityManager { if (desiredState == RESUMED) { if (localLOGV) Log.v(TAG, r.id + ": resuming"); mActivityThread.performResumeActivity(r, true); mActivityThread.performResumeActivity(r, true, "moveToState-INITIALIZING"); r.curState = RESUMED; } Loading @@ -167,7 +167,7 @@ public class LocalActivityManager { if (desiredState == RESUMED) { if (localLOGV) Log.v(TAG, r.id + ": restarting and resuming"); mActivityThread.performRestartActivity(r); mActivityThread.performResumeActivity(r, true); mActivityThread.performResumeActivity(r, true, "moveToState-CREATED"); r.curState = RESUMED; } return; Loading @@ -176,13 +176,13 @@ public class LocalActivityManager { if (desiredState == RESUMED) { // Need to resume it... if (localLOGV) Log.v(TAG, r.id + ": resuming"); mActivityThread.performResumeActivity(r, true); mActivityThread.performResumeActivity(r, true, "moveToState-STARTED"); r.instanceState = null; r.curState = RESUMED; } if (desiredState == CREATED) { if (localLOGV) Log.v(TAG, r.id + ": stopping"); mActivityThread.performStopActivity(r, false); mActivityThread.performStopActivity(r, false, "moveToState-STARTED"); r.curState = CREATED; } return; Loading @@ -197,7 +197,7 @@ public class LocalActivityManager { if (localLOGV) Log.v(TAG, r.id + ": pausing"); performPause(r, mFinishing); if (localLOGV) Log.v(TAG, r.id + ": stopping"); mActivityThread.performStopActivity(r, false); mActivityThread.performStopActivity(r, false, "moveToState-RESUMED"); r.curState = CREATED; } return; Loading @@ -205,9 +205,9 @@ public class LocalActivityManager { } private void performPause(LocalActivityRecord r, boolean finishing) { boolean needState = r.instanceState == null; Bundle instanceState = mActivityThread.performPauseActivity(r, finishing, needState); final boolean needState = r.instanceState == null; final Bundle instanceState = mActivityThread.performPauseActivity( r, finishing, needState, "performPause"); if (needState) { r.instanceState = instanceState; } Loading
services/core/java/com/android/server/am/ActivityStack.java +2 −0 Original line number Diff line number Diff line Loading @@ -3005,6 +3005,8 @@ final class ActivityStack { if (!r.visible) { mWindowManager.setAppVisibility(r.appToken, false); } EventLogTags.writeAmStopActivity( r.userId, System.identityHashCode(r), r.shortComponentName); r.app.thread.scheduleStopActivity(r.appToken, r.visible, r.configChangeFlags); if (mService.isSleepingOrShuttingDown()) { r.setSleeping(true); Loading
services/core/java/com/android/server/am/EventLogTags.logtags +7 −2 Original line number Diff line number Diff line Loading @@ -54,9 +54,9 @@ option java_package com.android.server.am # An activity has been relaunched: 30020 am_relaunch_activity (User|1|5),(Token|1|5),(Task ID|1|5),(Component Name|3) # The activity's onPause has been called. 30021 am_on_paused_called (User|1|5),(Component Name|3) 30021 am_on_paused_called (User|1|5),(Component Name|3),(Reason|3) # The activity's onResume has been called. 30022 am_on_resume_called (User|1|5),(Component Name|3) 30022 am_on_resume_called (User|1|5),(Component Name|3),(Reason|3) # Kill a process to reclaim memory. 30023 am_kill (User|1|5),(PID|1|5),(Process Name|3),(OomAdj|1|5),(Reason|3) # Discard an undelivered serialized broadcast (timeout/ANR/crash) Loading Loading @@ -103,3 +103,8 @@ option java_package com.android.server.am 30046 am_meminfo (Cached|2|2),(Free|2|2),(Zram|2|2),(Kernel|2|2),(Native|2|2) # Report collection of memory used by a process 30047 am_pss (Pid|1|5),(UID|1|5),(Process Name|3),(Pss|2|2),(Uss|2|2),(SwapPss|2|2) # Attempting to stop an activity 30048 am_stop_activity (User|1|5),(Token|1|5),(Component Name|3) # The activity's onStop has been called. 30049 am_on_stop_called (User|1|5),(Component Name|3),(Reason|3)