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());
HistoryRecord.java 50 final ComponentName realActivity; // the intent component, or target of an alias.
116 pw.print(prefix); pw.print("realActivity=");
117 pw.println(realActivity.flattenToShortString());
214 realActivity = _intent.getComponent();
216 realActivity = new ComponentName(aInfo.packageName,
268 !"android".equals(realActivity.getClassName())) {
282 realActivity = null;
392 service.mUsageStatsService.noteLaunchTime(realActivity, (int)totalTime);
  /packages/apps/Music/src/com/android/music/
MusicUtils.java 167 Activity realActivity = context.getParent();
168 if (realActivity == null) {
169 realActivity = context;
171 ContextWrapper cw = new ContextWrapper(realActivity);
    [all...]

Completed in 223 milliseconds