Home
last modified time | relevance | path

Searched refs:mBondStateMachine (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/btservice/
DBondStateMachineTest.java62 private BondStateMachine mBondStateMachine; field in BondStateMachineTest
83 mBondStateMachine = BondStateMachine.make(mAdapterService, mAdapterProperties, in setUp()
110 Message removeBondMsg1 = mBondStateMachine.obtainMessage(BondStateMachine.REMOVE_BOND); in testCreateBondAfterRemoveBond()
112 mBondStateMachine.sendMessage(removeBondMsg1); in testCreateBondAfterRemoveBond()
113 TestUtils.waitForLooperToFinishScheduledTask(mBondStateMachine.getHandler().getLooper()); in testCreateBondAfterRemoveBond()
114 Message removeBondMsg2 = mBondStateMachine.obtainMessage(BondStateMachine.REMOVE_BOND); in testCreateBondAfterRemoveBond()
116 mBondStateMachine.sendMessage(removeBondMsg2); in testCreateBondAfterRemoveBond()
117 TestUtils.waitForLooperToFinishScheduledTask(mBondStateMachine.getHandler().getLooper()); in testCreateBondAfterRemoveBond()
122 mBondStateMachine.bondStateChangeCallback(AbstractionLayer.BT_STATUS_SUCCESS, in testCreateBondAfterRemoveBond()
124 TestUtils.waitForLooperToFinishScheduledTask(mBondStateMachine.getHandler().getLooper()); in testCreateBondAfterRemoveBond()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
DJniCallbacks.java26 private BondStateMachine mBondStateMachine; field in JniCallbacks
35 mBondStateMachine = bondStateMachine; in init()
42 mBondStateMachine = null; in cleanup()
51 mBondStateMachine.sspRequestCallback(address, name, cod, pairingVariant, passkey); in sspRequestCallback()
63 mBondStateMachine.pinRequestCallback(address, name, cod, min16Digits); in pinRequestCallback()
67 mBondStateMachine.bondStateChangeCallback(status, address, newState); in bondStateChangeCallback()
DAdapterService.java242 private BondStateMachine mBondStateMachine; field in AdapterService
656 mBondStateMachine = BondStateMachine.make(this, mAdapterProperties, mRemoteDevices); in bringUpBle()
658 mJniCallbacks.init(mBondStateMachine, mRemoteDevices); in bringUpBle()
850 if (mBondStateMachine != null) { in cleanup()
851 mBondStateMachine.doQuit(); in cleanup()
1627 Message msg = service.mBondStateMachine.obtainMessage(BondStateMachine.REMOVE_BOND); in removeBond()
1629 service.mBondStateMachine.sendMessage(msg); in removeBond()
2654 Message msg = mBondStateMachine.obtainMessage(BondStateMachine.CREATE_BOND); in createBond()
2671 mBondStateMachine.sendMessage(msg); in createBond()
2749 Message msg = mBondStateMachine.obtainMessage(BondStateMachine.UUID_UPDATE); in deviceUuidUpdated()
[all …]