Home | History | Annotate | Download | only in packageinstaller

Lines Matching refs:nextActivity

94         Intent nextActivity = new Intent(intent);
95 nextActivity.setFlags(Intent.FLAG_ACTIVITY_FORWARD_RESULT);
97 // The the installation source as the nextActivity thinks this activity is the source, hence
99 nextActivity.putExtra(PackageInstallerActivity.EXTRA_CALLING_PACKAGE, callingPackage);
100 nextActivity.putExtra(PackageInstallerActivity.EXTRA_ORIGINAL_SOURCE_INFO, sourceInfo);
101 nextActivity.putExtra(Intent.EXTRA_ORIGINATING_UID, originatingUid);
104 nextActivity.setClass(this, PackageInstallerActivity.class);
115 nextActivity = null;
118 nextActivity.setClass(this, InstallStaging.class);
120 nextActivity.setClass(this, PackageInstallerActivity.class);
125 if (nextActivity != null) {
126 startActivity(nextActivity);