Home
last modified time | relevance | path

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

/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
DJniCallbacks.java22 private AdapterProperties mAdapterProperties; field in JniCallbacks
28 mAdapterProperties = adapterProperties; in JniCallbacks()
38 mAdapterProperties = null; in cleanup()
77 mAdapterProperties.discoveryStateChangeCallback(state); in discoveryStateChangeCallback()
81 mAdapterProperties.adapterPropertyChangedCallback(types, val); in adapterPropertyChangedCallback()
DAdapterState.java68 private AdapterProperties mAdapterProperties; field in AdapterState
91 mAdapterProperties = adapterProperties; in AdapterState()
107 if(mAdapterProperties != null) in cleanup()
108 mAdapterProperties = null; in cleanup()
164 mAdapterProperties.onBluetoothDisable(); in processMessage()
250 mAdapterProperties.onBluetoothReady(); in processMessage()
325 int oldState = mAdapterProperties.getState(); in notifyAdapterStateChange()
326 mAdapterProperties.setState(newState); in notifyAdapterStateChange()
DAdapterService.java128 private AdapterProperties mAdapterProperties; field in AdapterService
253 mAdapterProperties = new AdapterProperties(this); in onCreate()
254 mAdapterStateMachine = AdapterState.make(this, mAdapterProperties); in onCreate()
255 mJniCallbacks = new JniCallbacks(mAdapterStateMachine, mAdapterProperties); in onCreate()
288 mAdapterProperties.init(mRemoteDevices); in processStart()
291 mBondStateMachine = BondStateMachine.make(this, mAdapterProperties, mRemoteDevices); in processStart()
368 if (mAdapterProperties != null) { in cleanup()
369 mAdapterProperties.cleanup(); in cleanup()
882 return mAdapterProperties.getState() == BluetoothAdapter.STATE_ON; in isEnabled()
888 if (mAdapterProperties == null){ in getState()
[all …]
DBondStateMachine.java60 private AdapterProperties mAdapterProperties; field in BondStateMachine
74 mAdapterProperties = prop; in BondStateMachine()
94 mAdapterProperties = null; in cleanup()
260 mAdapterProperties.onBondStateChanged(device, newState); in sendIntent()