Searched refs:mIncomingConnections (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/bluetooth/
H A DBluetoothDeviceProfileState.java110 private Pair<Integer, String> mIncomingConnections; field in class:BluetoothDeviceProfileState
215 mIncomingConnections = mService.getIncomingState(address);
811 if (mIncomingConnections != null) return mIncomingConnections.first;
826 if (mIncomingConnections == null) {
829 second = mIncomingConnections.second;
832 mIncomingConnections = new Pair(value, second);
833 mService.writeIncomingConnectionState(mDevice.getAddress(), mIncomingConnections);
838 if (mIncomingConnections == null) {
841 first = mIncomingConnections
[all...]
/frameworks/base/core/java/android/server/
H A DBluetoothService.java148 private HashMap<String, Pair<Integer, String>> mIncomingConnections; field in class:BluetoothService
218 mIncomingConnections = new HashMap<String, Pair<Integer, String>>();
2247 if (mIncomingConnections.isEmpty()) {
2251 return mIncomingConnections.get(address);
2255 synchronized(mIncomingConnections) {
2269 mIncomingConnections.put(value[0], val);
2310 synchronized(mIncomingConnections) {
2311 mIncomingConnections.put(address, data);
2318 for (String devAddress: mIncomingConnections.keySet()) {
2319 Pair<Integer, String> val = mIncomingConnections
[all...]

Completed in 22 milliseconds