Lines Matching full:handover
24 import com.android.nfc.handover.HandoverDataParser;
25 import com.android.nfc.handover.PeripheralHandoverService;
276 if (DBG) Log.i(TAG, "matched BT HANDOVER");
590 HandoverDataParser.BluetoothHandoverData handover = mHandoverDataParser.parseBluetooth(m);
591 if (handover == null || !handover.valid) return false;
600 intent.putExtra(PeripheralHandoverService.EXTRA_PERIPHERAL_DEVICE, handover.device);
601 intent.putExtra(PeripheralHandoverService.EXTRA_PERIPHERAL_NAME, handover.name);
602 intent.putExtra(PeripheralHandoverService.EXTRA_PERIPHERAL_TRANSPORT, handover.transport);
603 if (handover.oobData != null) {
604 intent.putExtra(PeripheralHandoverService.EXTRA_PERIPHERAL_OOB_DATA, handover.oobData);