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 32 ComponentName realActivity; // The actual activity component that started the task.
60 realActivity = _intent != null ? _intent.getComponent() : null;
69 realActivity = targetComponent;
73 realActivity = targetComponent;
112 if (realActivity != null) {
113 pw.print(prefix); pw.print("realActivity=");
114 pw.println(realActivity.flattenToShortString());
ActivityRecord.java 57 final ComponentName realActivity; // the intent component, or target of an alias.
129 pw.print(prefix); pw.print("realActivity=");
130 pw.println(realActivity.flattenToShortString());
241 realActivity = _intent.getComponent();
243 realActivity = new ComponentName(aInfo.packageName,
306 !"android".equals(realActivity.getClassName())) {
322 realActivity = null;
552 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 50 milliseconds