Home
last modified time | relevance | path

Searched refs:topActivity (Results 1 – 8 of 8) sorted by relevance

/packages/services/Car/service/src/com/android/car/
DSystemActivityMonitoringService.java59 public final ComponentName topActivity; field in SystemActivityMonitoringService.TopTaskInfoContainer
65 private TopTaskInfoContainer(ComponentName topActivity, int taskId, in TopTaskInfoContainer() argument
67 this.topActivity = topActivity; in TopTaskInfoContainer()
76 && Objects.equals(this.topActivity, taskInfo.topActivity) in isMatching()
88 topActivity, taskId, stackInfo.stackId, stackInfo.userId, displayId, position); in toString()
295 info.topActivity, info.taskIds[info.taskIds.length - 1], in updateTasks()
338 ComponentName topActivity = ComponentName.unflattenFromString( in getFocusedStackForTopActivity() local
340 if (topActivity.equals(activity)) { in getFocusedStackForTopActivity()
408 ComponentName topActivity = ComponentName.unflattenFromString( in findTaskAndGrantFocus() local
410 if (activity.equals(topActivity)) { in findTaskAndGrantFocus()
/packages/services/Car/tests/carservice_test/src/com/android/car/
DSystemActivityMonitoringServiceTest.java143 if (topTaskInfoContainer.topActivity.equals(component)) { in topTasksHasComponent()
179 assertEquals(activity, mTopTaskInfo[0].topActivity); in assertTopTaskActivity()
228 if (!getTestContext().getPackageName().equals(topTask.topActivity.getPackageName())) { in onActivityLaunch()
230 + topTask.topActivity.getClassName()); in onActivityLaunch()
233 if (mDesiredComponent != null && !topTask.topActivity.equals(mDesiredComponent)) { in onActivityLaunch()
235 topTask.topActivity.getClassName(), mDesiredComponent)); in onActivityLaunch()
/packages/services/Car/service/src/com/android/car/pm/
DCarPackageManagerService.java1020 if (topTask.topActivity == null) { in doBlockTopActivityIfNotAllowed()
1033 topTask.topActivity.getPackageName(), in doBlockTopActivityIfNotAllowed()
1034 topTask.topActivity.getClassName()); in doBlockTopActivityIfNotAllowed()
1043 Log.d(CarLog.TAG_PACKAGE, "Current activity " + topTask.topActivity + in doBlockTopActivityIfNotAllowed()
1050 Log.i(CarLog.TAG_PACKAGE, "Current activity " + topTask.topActivity + in doBlockTopActivityIfNotAllowed()
1076 topTask.topActivity.flattenToShortString(), topTask.taskId, taskRootActivity, in doBlockTopActivityIfNotAllowed()
/packages/services/Car/service/src/com/android/car/am/
DFixedActivityService.java429 if (activityInfo.intent.getComponent().equals(stackInfo.topActivity) in launchIfNecessary()
438 + stackInfo.topActivity + " top task id:" + activityInfo.previousTaskId in launchIfNecessary()
/packages/apps/Car/Cluster/src/android/car/cluster/
DActivityMonitor.java172 listener.onTopActivityChanged(info.displayId, info.topActivity); in notifyTopActivities()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/
DRecentTasksList.java188 t.isLocked, t.taskDescription, t.topActivity)); in copyOf()
/packages/apps/Stk/src/com/android/stk/
DStkAppService.java814 String top = tasks.get(0).topActivity.getPackageName(); in isScreenIdle()
1038 if (tasks == null || tasks.get(0).topActivity == null) { in isTopOfStack()
1041 currentPackageName = tasks.get(0).topActivity.getPackageName(); in isTopOfStack()
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/
DTouchInteractionService.java686 && mGestureBlockingActivity.equals(runningTaskInfo.topActivity)) { in newBaseConsumer()