Searched defs:realActivity (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/services/java/com/android/server/am/
H A DTaskRecord.java33 ComponentName realActivity; // The actual activity component that started the task. field in class:TaskRecord
74 realActivity = _intent != null ? _intent.getComponent() : null;
87 realActivity = targetComponent;
91 realActivity = targetComponent;
135 if (realActivity != null) {
136 pw.print(prefix); pw.print("realActivity=");
137 pw.println(realActivity.flattenToShortString());
H A DActivityRecord.java64 final ComponentName realActivity; // the intent component, or target of an alias. field in class:ActivityRecord
142 pw.print(prefix); pw.print("realActivity=");
143 pw.println(realActivity.flattenToShortString());
364 realActivity = _intent.getComponent();
366 realActivity = new ComponentName(aInfo.packageName,
429 !ResolverActivity.class.getName().equals(realActivity.getClassName())) {
445 realActivity = null;
782 service.mUsageStatsService.noteLaunchTime(realActivity, (int)totalTime);

Completed in 240 milliseconds