Home
last modified time | relevance | path

Searched refs:BondStateMachine (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/btservice/
DBondStateMachineTest.java62 private BondStateMachine mBondStateMachine;
83 mBondStateMachine = BondStateMachine.make(mAdapterService, mAdapterProperties, in setUp()
110 Message removeBondMsg1 = mBondStateMachine.obtainMessage(BondStateMachine.REMOVE_BOND); in testCreateBondAfterRemoveBond()
114 Message removeBondMsg2 = mBondStateMachine.obtainMessage(BondStateMachine.REMOVE_BOND); in testCreateBondAfterRemoveBond()
130 Message createBondMsg1 = mBondStateMachine.obtainMessage(BondStateMachine.CREATE_BOND); in testCreateBondAfterRemoveBond()
133 Message createBondMsg2 = mBondStateMachine.obtainMessage(BondStateMachine.CREATE_BOND); in testCreateBondAfterRemoveBond()
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
DBondStateMachine.java67 final class BondStateMachine extends StateMachine { class
95 private BondStateMachine(AdapterService service, AdapterProperties prop, in BondStateMachine() method in BondStateMachine
107 public static BondStateMachine make(AdapterService service, AdapterProperties prop, in make()
110 BondStateMachine bsm = new BondStateMachine(service, prop, remoteDevices); in make()
DJniCallbacks.java26 private BondStateMachine mBondStateMachine;
33 void init(BondStateMachine bondStateMachine, RemoteDevices remoteDevices) { in init()
DAdapterService.java242 private BondStateMachine mBondStateMachine;
656 mBondStateMachine = BondStateMachine.make(this, mAdapterProperties, mRemoteDevices); in bringUpBle()
1627 Message msg = service.mBondStateMachine.obtainMessage(BondStateMachine.REMOVE_BOND); in removeBond()
2654 Message msg = mBondStateMachine.obtainMessage(BondStateMachine.CREATE_BOND); in createBond()
2661 remoteOobDatasBundle.putParcelable(BondStateMachine.OOBDATAP192, remoteP192Data); in createBond()
2665 remoteOobDatasBundle.putParcelable(BondStateMachine.OOBDATAP256, remoteP256Data); in createBond()
2749 Message msg = mBondStateMachine.obtainMessage(BondStateMachine.UUID_UPDATE); in deviceUuidUpdated()