HomeSort by relevance Sort by last modified time
    Searched refs:getBondState (Results 1 - 25 of 27) 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 273 if (getBondState() == BluetoothDevice.BOND_NONE) {
304 int state = getBondState();
407 int getBondState() {
408 return mDevice.getBondState();
448 return getBondState() == BluetoothDevice.BOND_BONDING;
608 comparison = (another.getBondState() == BluetoothDevice.BOND_BONDED ? 1 : 0) -
609 (getBondState() == BluetoothDevice.BOND_BONDED ? 1 : 0);
DevicePickerFragment.java 78 if ((btPreference.getCachedDevice().getBondState() ==
BluetoothSettings.java 392 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 822 public int getBondState() {
828 return sService.getBondState(this);
833 Log.e(TAG, "NullPointerException for getBondState() of device ("+
    [all...]
  /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 727 public int getBondState(BluetoothDevice device) {
731 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) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
BluetoothController.java 106 if (device.getBondState() != BluetoothDevice.BOND_NONE) {
  /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 337 " bondState=" + device.getBondState());
362 " 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 5762 milliseconds

1 2