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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DBluetoothUtil.java73 public static String connectionStateToString(int connectionState) { argument
74 if (connectionState == BluetoothAdapter.STATE_DISCONNECTED) return "STATE_DISCONNECTED";
75 if (connectionState == BluetoothAdapter.STATE_CONNECTED) return "STATE_CONNECTED";
76 if (connectionState == BluetoothAdapter.STATE_DISCONNECTING) return "STATE_DISCONNECTING";
77 if (connectionState == BluetoothAdapter.STATE_CONNECTING) return "STATE_CONNECTING";
H A DBluetoothControllerImpl.java97 return info == null ? null : ("connectionState=" +
98 connectionStateToString(info.connectionState) + ",bonded=" + info.bonded);
155 paired.state = connectionStateToPairedDeviceState(info.connectionState);
308 info.connectionState = state;
313 setConnecting(info.connectionState == BluetoothAdapter.STATE_CONNECTING);
333 int connectionState = BluetoothAdapter.STATE_DISCONNECTED; field in class:BluetoothControllerImpl.DeviceInfo

Completed in 125 milliseconds