Home | History | Annotate | Download | only in phone

Lines Matching defs:intent

22 import android.content.Intent;
34 * Invisible activity that handles the com.android.phone.PERFORM_CDMA_PROVISIONING intent.
55 Intent intent = getIntent();
56 if (DBG) Log.d(LOG_TAG, "onCreate: intent = " + intent);
57 Bundle extras = intent.getExtras();
72 if (intent.getAction().equals(OtaUtils.ACTION_PERFORM_CDMA_PROVISIONING)) {
90 // Testing: this intent extra allows test apps manually
94 if (intent.hasExtra(OtaUtils.EXTRA_OVERRIDE_INTERACTIVE_MODE)
97 intent.getBooleanExtra(OtaUtils.EXTRA_OVERRIDE_INTERACTIVE_MODE, false);
109 (PendingIntent) intent.getParcelableExtra(
146 Log.e(LOG_TAG, "Unexpected intent action: " + intent);
165 Intent intent = new Intent("android.intent.action.DEVICE_INITIALIZATION_WIZARD");
166 ResolveInfo resolveInfo = context.getPackageManager().resolveActivity(intent,
183 final Intent intent = new Intent();
190 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
193 intent.putExtra(OtaUtils.EXTRA_OTASP_RESULT_CODE_PENDING_INTENT, otaResponseIntent);
198 intent.setClassName(this, HfaActivity.class.getName());
199 startActivity(intent);
201 intent.setClassName(this, HfaService.class.getName());
202 startService(intent);