HomeSort by relevance Sort by last modified time
    Searched refs:bluetoothState (Results 1 - 12 of 12) sorted by null

  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
BluetoothCallback.java 25 void onBluetoothStateChanged(int bluetoothState);
CachedBluetoothDeviceManager.java 152 public synchronized void onBluetoothStateChanged(int bluetoothState) {
155 if (bluetoothState == BluetoothAdapter.STATE_TURNING_OFF) {
  /packages/apps/Settings/src/com/android/settings/bluetooth/
DevicePickerFragment.java 138 public void onBluetoothStateChanged(int bluetoothState) {
139 super.onBluetoothStateChanged(bluetoothState);
141 if (bluetoothState == BluetoothAdapter.STATE_ON) {
BluetoothSettings.java 311 private void updateContent(int bluetoothState) {
315 switch (bluetoothState) {
435 public void onBluetoothStateChanged(int bluetoothState) {
436 super.onBluetoothStateChanged(bluetoothState);
439 if (BluetoothAdapter.STATE_ON == bluetoothState)
441 updateContent(bluetoothState);
536 public void onBluetoothStateChanged(int bluetoothState) {
537 mEnabled = bluetoothState == BluetoothAdapter.STATE_ON;
DeviceListPreferenceFragment.java 221 public void onBluetoothStateChanged(int bluetoothState) {
222 if (bluetoothState == BluetoothAdapter.STATE_OFF) {
DockService.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
BluetoothControllerImpl.java 200 public void onBluetoothStateChanged(int bluetoothState) {
201 mEnabled = bluetoothState == BluetoothAdapter.STATE_ON
202 || bluetoothState == BluetoothAdapter.STATE_TURNING_ON;
203 mState = bluetoothState;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/keyboard/
KeyboardUI.java 376 private void onBluetoothStateChangedInternal(int bluetoothState) {
377 if (bluetoothState == BluetoothAdapter.STATE_ON && mState == STATE_WAITING_FOR_BLUETOOTH) {
485 int bluetoothState = msg.arg1;
486 onBluetoothStateChangedInternal(bluetoothState);
592 public void onBluetoothStateChanged(int bluetoothState) {
594 bluetoothState, 0).sendToTarget();
  /packages/apps/Bluetooth/lib/mapapi/com/android/bluetooth/mapapi/
BluetoothMapIMProvider.java 627 boolean bluetoothState = extras.getBoolean(
629 ret = setBluetoothStatus(bluetoothState);
664 * @param bluetoothState 'on' of 'off'
667 abstract protected int setBluetoothStatus(boolean bluetoothState);
  /packages/apps/Settings/src/com/android/settings/widget/
SettingsAppWidgetProvider.java 488 int bluetoothState = intent.getIntExtra(BluetoothAdapter.EXTRA_STATE, -1);
489 setCurrentState(context, bluetoothStateToFiveState(bluetoothState));
496 private static int bluetoothStateToFiveState(int bluetoothState) {
497 switch (bluetoothState) {
    [all...]
  /external/robolectric/v3/runtime/
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 

Completed in 785 milliseconds