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

  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothCallback.java 28 void onDeviceBondStateChanged(CachedBluetoothDevice cachedDevice, int bondState);
DevicePickerFragment.java 82 int bondState) {
83 if (bondState == BluetoothDevice.BOND_BONDED) {
BluetoothDevicePreference.java 174 int bondState = mCachedDevice.getBondState();
178 } else if (bondState == BluetoothDevice.BOND_BONDED) {
180 } else if (bondState == BluetoothDevice.BOND_NONE) {
BluetoothEventManager.java 250 int bondState = intent.getIntExtra(BluetoothDevice.EXTRA_BOND_STATE,
271 callback.onDeviceBondStateChanged(cachedDevice, bondState);
274 cachedDevice.onBondingStateChanged(bondState);
276 if (bondState == BluetoothDevice.BOND_NONE) {
BluetoothPairingDialog.java 71 int bondState = intent.getIntExtra(BluetoothDevice.EXTRA_BOND_STATE,
73 if (bondState == BluetoothDevice.BOND_BONDED ||
74 bondState == BluetoothDevice.BOND_NONE) {
CachedBluetoothDevice.java 486 void onBondingStateChanged(int bondState) {
487 if (bondState == BluetoothDevice.BOND_NONE) {
495 if (bondState == BluetoothDevice.BOND_BONDED) {
BluetoothSettings.java 346 public void onDeviceBondStateChanged(CachedBluetoothDevice cachedDevice, int bondState) {
  /frameworks/base/core/java/android/server/
BluetoothService.java 752 private static String toBondStateString(int bondState) {
753 switch (bondState) {
    [all...]

Completed in 86 milliseconds