Searched refs:BondStateMachine (Results 1 – 4 of 4) sorted by relevance
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/btservice/ |
D | BondStateMachineTest.java | 60 private BondStateMachine mBondStateMachine; 81 mBondStateMachine = BondStateMachine.make(mAdapterService, mAdapterProperties, in setUp() 108 Message removeBondMsg1 = mBondStateMachine.obtainMessage(BondStateMachine.REMOVE_BOND); in testCreateBondAfterRemoveBond() 112 Message removeBondMsg2 = mBondStateMachine.obtainMessage(BondStateMachine.REMOVE_BOND); in testCreateBondAfterRemoveBond() 128 Message createBondMsg1 = mBondStateMachine.obtainMessage(BondStateMachine.CREATE_BOND); in testCreateBondAfterRemoveBond() 131 Message createBondMsg2 = mBondStateMachine.obtainMessage(BondStateMachine.CREATE_BOND); in testCreateBondAfterRemoveBond()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/ |
D | BondStateMachine.java | 56 final class BondStateMachine extends StateMachine { class 83 private BondStateMachine(AdapterService service, AdapterProperties prop, in BondStateMachine() method in BondStateMachine 95 public static BondStateMachine make(AdapterService service, AdapterProperties prop, in make() 98 BondStateMachine bsm = new BondStateMachine(service, prop, remoteDevices); in make()
|
D | JniCallbacks.java | 24 private BondStateMachine mBondStateMachine; 31 void init(BondStateMachine bondStateMachine, RemoteDevices remoteDevices) { in init()
|
D | AdapterService.java | 196 private BondStateMachine mBondStateMachine; 573 mBondStateMachine = BondStateMachine.make(this, mAdapterProperties, mRemoteDevices); in bringUpBle() 1446 Message msg = service.mBondStateMachine.obtainMessage(BondStateMachine.REMOVE_BOND); in removeBond() 2266 Message msg = mBondStateMachine.obtainMessage(BondStateMachine.CREATE_BOND); in createBond() 2272 oobDataBundle.putParcelable(BondStateMachine.OOBDATA, oobData); in createBond() 2303 Message msg = mBondStateMachine.obtainMessage(BondStateMachine.UUID_UPDATE); in deviceUuidUpdated()
|