Home | History | Annotate | Download | only in pbap

Lines Matching defs:intent

40 import android.content.Intent;
102 public void onReceive(Context context, Intent intent) {
103 if (!BluetoothPbapService.USER_CONFIRM_TIMEOUT_ACTION.equals(intent.getAction())) {
113 Intent i = getIntent();
119 Log.e(TAG, "Error: this activity may be started only with intent "
196 Intent intent = new Intent(intentName);
197 intent.setClassName(BluetoothPbapService.THIS_PACKAGE_NAME, BluetoothPbapReceiver.class
200 intent.putExtra(extraName, extraValue);
202 sendBroadcast(intent);
207 Intent intent = new Intent(intentName);
208 intent.setClassName(BluetoothPbapService.THIS_PACKAGE_NAME, BluetoothPbapReceiver.class
211 intent.putExtra(extraName, extraValue);
213 sendBroadcast(intent);