Home
last modified time | relevance | path

Searched refs:PeripheralHandoverService (Results 1 – 2 of 2) sorted by relevance

/aosp12/packages/apps/Nfc/src/com/android/nfc/
H A DNfcDispatcher.java26 import com.android.nfc.handover.PeripheralHandoverService;
675 Intent intent = new Intent(mContext, PeripheralHandoverService.class); in tryPeripheralHandover()
676 intent.putExtra(PeripheralHandoverService.EXTRA_PERIPHERAL_DEVICE, handover.device); in tryPeripheralHandover()
677 intent.putExtra(PeripheralHandoverService.EXTRA_PERIPHERAL_NAME, handover.name); in tryPeripheralHandover()
678 intent.putExtra(PeripheralHandoverService.EXTRA_PERIPHERAL_TRANSPORT, handover.transport); in tryPeripheralHandover()
683 intent.putExtra(PeripheralHandoverService.EXTRA_PERIPHERAL_UUIDS, handover.uuids); in tryPeripheralHandover()
686 intent.putExtra(PeripheralHandoverService.EXTRA_PERIPHERAL_CLASS, handover.btClass); in tryPeripheralHandover()
688 intent.putExtra(PeripheralHandoverService.EXTRA_BT_ENABLED, mBluetoothEnabledByNfc.get()); in tryPeripheralHandover()
689 intent.putExtra(PeripheralHandoverService.EXTRA_CLIENT, mMessenger); in tryPeripheralHandover()
825 case PeripheralHandoverService.MSG_HEADSET_CONNECTED: in handleMessage()
[all …]
/aosp12/packages/apps/Nfc/src/com/android/nfc/handover/
H A DPeripheralHandoverService.java41 public class PeripheralHandoverService extends Service implements BluetoothPeripheralHandover.Callb… class
101 public PeripheralHandoverService() { in PeripheralHandoverService() method in PeripheralHandoverService