Lines Matching refs:intent

86         public void onReceive(final Context context, Intent intent) {
87 Rlog.d(TAG, "Received broadcast " + intent.getAction());
88 if (Intent.ACTION_USER_UNLOCKED.equals(intent.getAction())) {
108 Intent intent = new Intent(IWapPushManager.class.getName());
109 ComponentName comp = intent.resolveSystemService(context.getPackageManager(), 0);
110 intent.setComponent(comp);
111 if (comp == null || !context.bindService(intent, this, Context.BIND_AUTO_CREATE)) {
356 Intent intent = new Intent();
357 intent.putExtra("transactionId", result.transactionId);
358 intent.putExtra("pduType", result.pduType);
359 intent.putExtra("header", result.header);
360 intent.putExtra("data", result.intentData);
361 intent.putExtra("contentTypeParameters", result.contentTypeParameters);
362 SubscriptionManager.putPhoneIdAndSubIdExtra(intent, result.phoneId);
365 result.wapAppId, result.contentType, intent);
386 Intent intent = new Intent(Intents.WAP_PUSH_DELIVER_ACTION);
387 intent.setType(result.mimeType);
388 intent.putExtra("transactionId", result.transactionId);
389 intent.putExtra("pduType", result.pduType);
390 intent.putExtra("header", result.header);
391 intent.putExtra("data", result.intentData);
392 intent.putExtra("contentTypeParameters", result.contentTypeParameters);
393 SubscriptionManager.putPhoneIdAndSubIdExtra(intent, result.phoneId);
395 // Direct the intent to only the default MMS app. If we can't find a default MMS app
401 intent.setComponent(componentName);
414 handler.dispatchIntent(intent, getPermissionForType(result.mimeType),