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()
78 mAdapterProperties.discoveryStateChangeCallback(state); in discoveryStateChangeCallback()
82 mAdapterProperties.adapterPropertyChangedCallback(types, val); in adapterPropertyChangedCallback()
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()
241 AdapterProperties adapterProperties = mAdapterProperties; in processMessage()
323 AdapterProperties adapterProperties = mAdapterProperties; in processMessage()
487 AdapterProperties adapterProperties = mAdapterProperties; in notifyAdapterStateChange()
DAdapterService.java184 private AdapterProperties mAdapterProperties; field in AdapterService
509 mAdapterProperties = new AdapterProperties(this); in onCreate()
510 mAdapterStateMachine = AdapterState.make(this, mAdapterProperties); in onCreate()
511 mJniCallbacks = new JniCallbacks(mAdapterStateMachine, mAdapterProperties); in onCreate()
569 mAdapterProperties.init(mRemoteDevices); in BleOnProcessStart()
572 mBondStateMachine = BondStateMachine.make(this, mAdapterProperties, mRemoteDevices); in BleOnProcessStart()
694 if (mAdapterProperties != null) { in cleanup()
695 mAdapterProperties.cleanup(); in cleanup()
1455 return mAdapterProperties.getState() == BluetoothAdapter.STATE_ON; in isEnabled()
1460 if (mAdapterProperties != null) return mAdapterProperties.getState(); in getState()
[all …]
DBondStateMachine.java64 private AdapterProperties mAdapterProperties; field in BondStateMachine
80 mAdapterProperties = prop; in BondStateMachine()
100 mAdapterProperties = null; in cleanup()
337 mAdapterProperties.onBondStateChanged(device, newState); in sendIntent()