Home
last modified time | relevance | path

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

/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/
DMapClientService.java114 MceStateMachine mapStateMachine = mMapInstanceMap.get(device); in connect() local
115 if (mapStateMachine == null) { in connect()
162 MceStateMachine mapStateMachine = new MceStateMachine(this, device); in addDeviceToMapAndConnect() local
163 mMapInstanceMap.put(device, mapStateMachine); in addDeviceToMapAndConnect()
175 MceStateMachine mapStateMachine = mMapInstanceMap.get(device); in disconnect() local
177 if (mapStateMachine == null) { in disconnect()
180 int connectionState = mapStateMachine.getState(); in disconnect()
185 mapStateMachine.disconnect(); in disconnect()
222 MceStateMachine mapStateMachine = mMapInstanceMap.get(device); in getConnectionState() local
224 return (mapStateMachine == null) ? BluetoothProfile.STATE_DISCONNECTED in getConnectionState()
[all …]