Home | History | Annotate | Download | only in am

Lines Matching full:ainfo

382             ActivityInfo aInfo, Configuration _configuration,
388 info = aInfo;
391 userId = UserHandle.getUserId(aInfo.applicationInfo.uid);
426 if (aInfo != null) {
427 if (aInfo.targetActivity == null
428 || aInfo.launchMode == ActivityInfo.LAUNCH_MULTIPLE
429 || aInfo.launchMode == ActivityInfo.LAUNCH_SINGLE_TOP) {
432 realActivity = new ComponentName(aInfo.packageName,
433 aInfo.targetActivity);
435 taskAffinity = aInfo.taskAffinity;
436 stateNotNeeded = (aInfo.flags&
438 appInfo = aInfo.applicationInfo;
439 nonLocalizedLabel = aInfo.nonLocalizedLabel;
440 labelRes = aInfo.labelRes;
442 ApplicationInfo app = aInfo.applicationInfo;
446 icon = aInfo.getIconResource();
447 logo = aInfo.getLogoResource();
448 theme = aInfo.getThemeResource();
451 realTheme = aInfo.applicationInfo.targetSdkVersion
456 if ((aInfo.flags&ActivityInfo.FLAG_HARDWARE_ACCELERATED) != 0) {
459 if ((aInfo.flags&ActivityInfo.FLAG_MULTIPROCESS) != 0
461 && (aInfo.applicationInfo.uid == Process.SYSTEM_UID
462 || aInfo.applicationInfo.uid == _caller.info.uid)) {
465 processName = aInfo.processName;
468 if (intent != null && (aInfo.flags & ActivityInfo.FLAG_EXCLUDE_FROM_RECENTS) != 0) {
472 packageName = aInfo.applicationInfo.packageName;
473 launchMode = aInfo.launchMode;
501 immersive = (aInfo.flags & ActivityInfo.FLAG_IMMERSIVE) != 0;
1210 final ActivityInfo aInfo = stackSupervisor.resolveActivity(intent, resolvedType, 0, null,
1212 if (aInfo == null) {
1217 launchedFromPackage, intent, resolvedType, aInfo, service.getConfiguration(),