HomeSort by relevance Sort by last modified time
    Searched defs:realActivity (Results 1 - 3 of 3) sorted by null

  /frameworks/base/services/java/com/android/server/am/
TaskRecord.java 33 ComponentName realActivity; // The actual activity component that started the task.
62 realActivity = _intent != null ? _intent.getComponent() : null;
71 realActivity = targetComponent;
75 realActivity = targetComponent;
115 if (realActivity != null) {
116 pw.print(prefix); pw.print("realActivity=");
117 pw.println(realActivity.flattenToShortString());
ActivityRecord.java 54 final ComponentName realActivity; // the intent component, or target of an alias.
119 pw.print(prefix); pw.print("realActivity=");
120 pw.println(realActivity.flattenToShortString());
225 realActivity = _intent.getComponent();
227 realActivity = new ComponentName(aInfo.packageName,
279 !"android".equals(realActivity.getClassName())) {
293 realActivity = null;
448 service.mUsageStatsService.noteLaunchTime(realActivity, (int)totalTime);
  /packages/apps/Music/src/com/android/music/
MusicUtils.java 168 Activity realActivity = context.getParent();
169 if (realActivity == null) {
170 realActivity = context;
172 ContextWrapper cw = new ContextWrapper(realActivity);
    [all...]

Completed in 61 milliseconds