Lines Matching refs:handover
66 import com.android.nfc.handover.HandoverDataParser;
67 import com.android.nfc.handover.PeripheralHandoverService;
973 HandoverDataParser.BluetoothHandoverData handover = mHandoverDataParser.parseBluetooth(m); in tryPeripheralHandover() local
974 if (handover == null || !handover.valid) return false; in tryPeripheralHandover()
983 intent.putExtra(PeripheralHandoverService.EXTRA_PERIPHERAL_DEVICE, handover.device); in tryPeripheralHandover()
984 intent.putExtra(PeripheralHandoverService.EXTRA_PERIPHERAL_NAME, handover.name); in tryPeripheralHandover()
985 intent.putExtra(PeripheralHandoverService.EXTRA_PERIPHERAL_TRANSPORT, handover.transport); in tryPeripheralHandover()
986 if (handover.oobData != null) { in tryPeripheralHandover()
987 intent.putExtra(PeripheralHandoverService.EXTRA_PERIPHERAL_OOB_DATA, handover.oobData); in tryPeripheralHandover()
989 if (handover.uuids != null) { in tryPeripheralHandover()
990 intent.putExtra(PeripheralHandoverService.EXTRA_PERIPHERAL_UUIDS, handover.uuids); in tryPeripheralHandover()
992 if (handover.btClass != null) { in tryPeripheralHandover()
993 intent.putExtra(PeripheralHandoverService.EXTRA_PERIPHERAL_CLASS, handover.btClass); in tryPeripheralHandover()
1002 if (handover.btClass != null) { in tryPeripheralHandover()
1003 if (DBG) Log.d(TAG, "handover.btClass: " + handover.btClass.getMajorDeviceClass()); in tryPeripheralHandover()
1004 btClass = handover.btClass.getMajorDeviceClass(); in tryPeripheralHandover()
1024 if (DBG) Log.d(TAG, "handover.name: " + handover.name); in tryPeripheralHandover()
1025 btName = handover.name; in tryPeripheralHandover()