Home
last modified time | relevance | path

Searched refs:BluetoothDevicePreference (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothSettings.java69 private WeakHashMap<LocalBluetoothDevice, BluetoothDevicePreference> mDevicePreferenceMap =
70 new WeakHashMap<LocalBluetoothDevice, BluetoothDevicePreference>();
184 if (preference instanceof BluetoothDevicePreference) { in onPreferenceTreeClick()
185 BluetoothDevicePreference btPreference = (BluetoothDevicePreference) preference; in onPreferenceTreeClick()
219 if (pref == null || !(pref instanceof BluetoothDevicePreference)) { in getDeviceFromMenuInfo()
223 return ((BluetoothDevicePreference) pref).getDevice(); in getDeviceFromMenuInfo()
236 BluetoothDevicePreference preference = new BluetoothDevicePreference(this, device); in createDevicePreference()
242 BluetoothDevicePreference preference = mDevicePreferenceMap.remove(device); in onDeviceDeleted()
DBluetoothDevicePreference.java31 public class BluetoothDevicePreference extends Preference implements LocalBluetoothDevice.Callback { class
44 public BluetoothDevicePreference(Context context, LocalBluetoothDevice localDevice) { in BluetoothDevicePreference() method in BluetoothDevicePreference
117 if (!(another instanceof BluetoothDevicePreference)) { in compareTo()
122 return mLocalDevice.compareTo(((BluetoothDevicePreference) another).mLocalDevice); in compareTo()