Home
last modified time | relevance | path

Searched refs:launchedActivity (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/services/core/java/com/android/server/am/
DActivityMetricsLogger.java110 void notifyActivityLaunched(int resultCode, ActivityRecord launchedActivity) { in notifyActivityLaunched() argument
111 final ProcessRecord processRecord = launchedActivity != null in notifyActivityLaunched()
112 ? mSupervisor.mService.mProcessNames.get(launchedActivity.processName, in notifyActivityLaunched()
113 launchedActivity.appInfo.uid) in notifyActivityLaunched()
116 final String componentName = launchedActivity != null in notifyActivityLaunched()
117 ? launchedActivity.shortComponentName in notifyActivityLaunched()
125 || !hasStartedActivity(processRecord, launchedActivity); in notifyActivityLaunched()
130 private boolean hasStartedActivity(ProcessRecord record, ActivityRecord launchedActivity) { in hasStartedActivity() argument
134 if (launchedActivity == activity) { in hasStartedActivity()
DActivityStarter.java876 final ActivityRecord launchedActivity = mReusedActivity != null in startActivityMayWait() local
878 mSupervisor.mActivityMetricsLogger.notifyActivityLaunched(res, launchedActivity); in startActivityMayWait()