Searched refs:installIntent (Results 1 – 5 of 5) sorted by relevance
35 Intent installIntent = new Intent(getIntent()); in onCreate() local36 installIntent.setClass(this, PackageInstallerActivity.class); in onCreate()38 installIntent.setFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION); in onCreate()39 startActivityForResult(installIntent, 0); in onCreate()
203 Intent installIntent = new Intent(getIntent()); in onPostExecute() local204 installIntent.setClass(InstallStaging.this, DeleteStagedFileOnResult.class); in onPostExecute()205 installIntent.setData(Uri.fromFile(mStagedFile)); in onPostExecute()207 if (installIntent.getBooleanExtra(Intent.EXTRA_RETURN_RESULT, false)) { in onPostExecute()208 installIntent.addFlags(Intent.FLAG_ACTIVITY_FORWARD_RESULT); in onPostExecute()211 installIntent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION); in onPostExecute()212 startActivity(installIntent); in onPostExecute()
182 final Intent installIntent = new Intent(this, CertInstaller.class); in startInstallActivity() local190 installIntent.putExtras(intent); in startInstallActivity()196 installIntent.putExtra(Intent.EXTRA_REFERRER, getLaunchedFromPackage()); in startInstallActivity()197 startActivityForResult(installIntent, REQUEST_INSTALL); in startInstallActivity()
141 final Intent installIntent = new Intent(ACTION_INSTALL) in installIfAvailable() local144 startActivityAsUser(installIntent, new UserHandle(dstUserId)); in installIfAvailable()
204 Intent installIntent = new Intent(ACTION_INSTALL) in installIfAvailable() local207 startActivityAsUser(installIntent, new UserHandle(dstUserId)); in installIfAvailable()