HomeSort by relevance Sort by last modified time
    Searched refs:getBondState (Results 1 - 25 of 29) sorted by null

1 2

  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothDeviceFilter.java 87 return device.getBondState() == BluetoothDevice.BOND_BONDED;
94 return device.getBondState() != BluetoothDevice.BOND_BONDED;
CachedBluetoothDeviceManager.java 49 return cachedDevice.getBondState() == BluetoothDevice.BOND_NONE;
144 if (cachedDevice.getBondState() != BluetoothDevice.BOND_BONDED) {
BluetoothDevicePreference.java 68 if (cachedDevice.getBondState() == BluetoothDevice.BOND_BONDED) {
132 if (mCachedDevice.getBondState() == BluetoothDevice.BOND_BONDED) {
177 int bondState = mCachedDevice.getBondState();
258 switch (cachedDevice.getBondState()) {
CachedBluetoothDevice.java 295 if (getBondState() == BluetoothDevice.BOND_NONE) {
326 int state = getBondState();
432 int getBondState() {
433 return mDevice.getBondState();
473 return getBondState() == BluetoothDevice.BOND_BONDING;
639 comparison = (another.getBondState() == BluetoothDevice.BOND_BONDED ? 1 : 0) -
640 (getBondState() == BluetoothDevice.BOND_BONDED ? 1 : 0);
DevicePickerFragment.java 82 if ((btPreference.getCachedDevice().getBondState() ==
BluetoothSettings.java 390 if (cachedDevice.getBondState() == BluetoothDevice.BOND_BONDED) {
DeviceProfilesSettings.java 155 if(mCachedDevice.getBondState() == BluetoothDevice.BOND_NONE)
BluetoothEventManager.java 363 if (device != null && device.getBondState() == BluetoothDevice.BOND_NONE) {
  /frameworks/base/core/java/android/bluetooth/
IBluetooth.aidl 60 int getBondState(in BluetoothDevice device);
BluetoothDevice.java 842 public int getBondState() {
848 return sService.getBondState(this);
853 Log.e(TAG, "NullPointerException for getBondState() of device ("+
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
BluetoothController.java 85 if (device.getBondState() != BluetoothDevice.BOND_NONE) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
BondStateMachine.java 212 if (dev.getBondState() == BluetoothDevice.BOND_BONDING) {
224 if (dev.getBondState() == BluetoothDevice.BOND_BONDED) {
238 if (dev.getBondState() == BluetoothDevice.BOND_NONE) {
257 oldState = devProp.getBondState();
AdapterService.java 729 public int getBondState(BluetoothDevice device) {
733 return service.getBondState(device);
    [all...]
RemoteDevices.java 206 int getBondState() {
  /development/samples/BluetoothChat/src/com/example/android/BluetoothChat/
DeviceListActivity.java 187 if (device.getBondState() != BluetoothDevice.BOND_BONDED) {
  /packages/apps/Nfc/src/com/android/nfc/handover/
BluetoothHeadsetHandover.java 237 if (mDevice.getBondState() != BluetoothDevice.BOND_BONDED) {
245 if (mDevice.getBondState() != BluetoothDevice.BOND_BONDED) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
DevicePickerActivity.java 191 if (device.getBondState() != BluetoothDevice.BOND_BONDED) {
  /frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
BluetoothTestUtils.java 790 int state = device.getBondState();
812 state = device.getBondState();
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
HeadsetStateMachine.java 344 " bondState=" + device.getBondState());
369 " bondState=" + device.getBondState());
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
A2dpStateMachine.java 649 (device.getBondState() != BluetoothDevice.BOND_NONE))){
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hid/
HidService.java 611 (device.getBondState() == BluetoothDevice.BOND_NONE))
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/17/
android.jar 

Completed in 580 milliseconds

1 2