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.java60 private BondStateMachine mBondStateMachine; field in BondStateMachineTest
81 mBondStateMachine = BondStateMachine.make(mAdapterService, mAdapterProperties, in setUp()
108 Message removeBondMsg1 = mBondStateMachine.obtainMessage(BondStateMachine.REMOVE_BOND); in testCreateBondAfterRemoveBond()
110 mBondStateMachine.sendMessage(removeBondMsg1); in testCreateBondAfterRemoveBond()
111 TestUtils.waitForLooperToFinishScheduledTask(mBondStateMachine.getHandler().getLooper()); in testCreateBondAfterRemoveBond()
112 Message removeBondMsg2 = mBondStateMachine.obtainMessage(BondStateMachine.REMOVE_BOND); in testCreateBondAfterRemoveBond()
114 mBondStateMachine.sendMessage(removeBondMsg2); in testCreateBondAfterRemoveBond()
115 TestUtils.waitForLooperToFinishScheduledTask(mBondStateMachine.getHandler().getLooper()); in testCreateBondAfterRemoveBond()
120 mBondStateMachine.bondStateChangeCallback(AbstractionLayer.BT_STATUS_SUCCESS, in testCreateBondAfterRemoveBond()
122 TestUtils.waitForLooperToFinishScheduledTask(mBondStateMachine.getHandler().getLooper()); in testCreateBondAfterRemoveBond()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
DJniCallbacks.java24 private BondStateMachine mBondStateMachine; field in JniCallbacks
33 mBondStateMachine = bondStateMachine; in init()
40 mBondStateMachine = null; in cleanup()
49 mBondStateMachine.sspRequestCallback(address, name, cod, pairingVariant, passkey); in sspRequestCallback()
61 mBondStateMachine.pinRequestCallback(address, name, cod, min16Digits); in pinRequestCallback()
65 mBondStateMachine.bondStateChangeCallback(status, address, newState); in bondStateChangeCallback()
DAdapterService.java196 private BondStateMachine mBondStateMachine; field in AdapterService
573 mBondStateMachine = BondStateMachine.make(this, mAdapterProperties, mRemoteDevices); in bringUpBle()
575 mJniCallbacks.init(mBondStateMachine, mRemoteDevices); in bringUpBle()
735 if (mBondStateMachine != null) { in cleanup()
736 mBondStateMachine.doQuit(); in cleanup()
1446 Message msg = service.mBondStateMachine.obtainMessage(BondStateMachine.REMOVE_BOND); in removeBond()
1448 service.mBondStateMachine.sendMessage(msg); in removeBond()
2266 Message msg = mBondStateMachine.obtainMessage(BondStateMachine.CREATE_BOND); in createBond()
2275 mBondStateMachine.sendMessage(msg); in createBond()
2303 Message msg = mBondStateMachine.obtainMessage(BondStateMachine.UUID_UPDATE); in deviceUuidUpdated()
[all …]