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

  /packages/apps/Settings/src/com/android/settings/bluetooth/
SettingsBtStatus.java 69 public static final int getPairingStatusSummary(int bondState) {
70 switch (bondState) {
CachedBluetoothDevice.java 141 int bondState = getBondState();
145 } else if (bondState == BluetoothDevice.BOND_BONDED) {
147 } else if (bondState == BluetoothDevice.BOND_NONE) {
583 public void onBondingStateChanged(int bondState) {
584 if (bondState == BluetoothDevice.BOND_NONE) {
591 if (bondState == BluetoothDevice.BOND_BONDED) {
690 int bondState = getBondState();
703 if (bondState == BluetoothDevice.BOND_NONE) { // Not paired and not connected
BluetoothEventRedirector.java 79 int bondState = intent.getIntExtra(BluetoothDevice.EXTRA_BOND_STATE,
82 cachedDeviceMgr.onBondingStateChanged(device, bondState);
83 if (bondState == BluetoothDevice.BOND_NONE) {
BluetoothPairingDialog.java 62 int bondState = intent.getIntExtra(BluetoothDevice.EXTRA_BOND_STATE,
64 if (bondState == BluetoothDevice.BOND_BONDED ||
65 bondState == BluetoothDevice.BOND_NONE) {
CachedBluetoothDeviceManager.java 168 public synchronized void onBondingStateChanged(BluetoothDevice device, int bondState) {
184 cachedDevice.onBondingStateChanged(bondState);
BluetoothSettings.java 93 int bondState = intent
95 if (bondState == BluetoothDevice.BOND_BONDED) {
  /frameworks/base/core/java/android/server/
BluetoothA2dpService.java 93 int bondState = intent.getIntExtra(BluetoothDevice.EXTRA_BOND_STATE,
95 switch(bondState) {
BluetoothService.java 90 private final BondState mBondState = new BondState(); // local cache of bondings
678 public class BondState {
    [all...]
  /packages/apps/Phone/src/com/android/phone/
BluetoothHeadsetService.java 279 int bondState = intent.getIntExtra(BluetoothDevice.EXTRA_BOND_STATE,
281 switch(bondState) {
    [all...]

Completed in 38 milliseconds