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/
DAdapterService.java167 private AdapterProperties mAdapterProperties; field in AdapterService
448 mAdapterProperties = new AdapterProperties(this); in onCreate()
449 mAdapterStateMachine = AdapterState.make(this, mAdapterProperties); in onCreate()
450 mJniCallbacks = new JniCallbacks(mAdapterStateMachine, mAdapterProperties); in onCreate()
490 mAdapterProperties.init(mRemoteDevices); in BleOnProcessStart()
493 mBondStateMachine = BondStateMachine.make(this, mAdapterProperties, mRemoteDevices); in BleOnProcessStart()
608 if (mAdapterProperties != null) { in cleanup()
609 mAdapterProperties.cleanup(); in cleanup()
1357 return mAdapterProperties.getState() == BluetoothAdapter.STATE_ON; in isEnabled()
1362 if (mAdapterProperties != null) return mAdapterProperties.getState(); in getState()
[all …]
DAdapterState.java80 private AdapterProperties mAdapterProperties; field in AdapterState
117 mAdapterProperties = adapterProperties; in AdapterState()
133 if(mAdapterProperties != null) in cleanup()
134 mAdapterProperties = null; in cleanup()
185 AdapterProperties adapterProperties = mAdapterProperties; in processMessage()
240 AdapterProperties adapterProperties = mAdapterProperties; in processMessage()
322 AdapterProperties adapterProperties = mAdapterProperties; in processMessage()
486 AdapterProperties adapterProperties = mAdapterProperties; in notifyAdapterStateChange()
DJniCallbacks.java22 private AdapterProperties mAdapterProperties; field in JniCallbacks
28 mAdapterProperties = adapterProperties; in JniCallbacks()
38 mAdapterProperties = null; in cleanup()
78 mAdapterProperties.discoveryStateChangeCallback(state); in discoveryStateChangeCallback()
82 mAdapterProperties.adapterPropertyChangedCallback(types, val); in adapterPropertyChangedCallback()
DBondStateMachine.java62 private AdapterProperties mAdapterProperties; field in BondStateMachine
76 mAdapterProperties = prop; in BondStateMachine()
96 mAdapterProperties = null; in cleanup()
325 mAdapterProperties.onBondStateChanged(device, newState); in sendIntent()