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

  /packages/apps/Settings/src/com/android/settings/bluetooth/
CachedBluetoothDeviceManager.java 41 final List<CachedBluetoothDevice> mCachedDevices = new ArrayList<CachedBluetoothDevice>();
55 CachedBluetoothDevice cachedDevice = findDevice(device);
57 cachedDevice = new CachedBluetoothDevice(mLocalManager.getContext(), device);
67 public synchronized List<CachedBluetoothDevice> getCachedDevicesCopy() {
68 return new ArrayList<CachedBluetoothDevice>(mCachedDevices);
81 CachedBluetoothDevice cachedDevice = findDevice(device);
83 cachedDevice = new CachedBluetoothDevice(mLocalManager.getContext(), device);
98 CachedBluetoothDevice cachedDevice = findDevice(device);
105 private void checkForDeviceRemoval(CachedBluetoothDevice cachedDevice)
    [all...]
BluetoothDevicePreference.java 31 public class BluetoothDevicePreference extends Preference implements CachedBluetoothDevice.Callback {
36 private CachedBluetoothDevice mCachedDevice;
40 * from {@link #onDeviceAttributesChanged(CachedBluetoothDevice)}.
44 public BluetoothDevicePreference(Context context, CachedBluetoothDevice cachedDevice) {
62 public CachedBluetoothDevice getCachedDevice() {
72 public void onDeviceAttributesChanged(CachedBluetoothDevice cachedDevice) {
BluetoothSettings.java 86 private WeakHashMap<CachedBluetoothDevice, BluetoothDevicePreference> mDevicePreferenceMap =
87 new WeakHashMap<CachedBluetoothDevice, BluetoothDevicePreference>();
214 List<CachedBluetoothDevice> cachedDevices =
216 for (CachedBluetoothDevice cachedDevice : cachedDevices) {
235 CachedBluetoothDevice device = btPreference.getCachedDevice();
261 CachedBluetoothDevice cachedDevice = getDeviceFromMenuInfo(menuInfo);
269 CachedBluetoothDevice cachedDevice = getDeviceFromMenuInfo(item.getMenuInfo());
276 private CachedBluetoothDevice getDeviceFromMenuInfo(ContextMenuInfo menuInfo) {
291 public void onDeviceAdded(CachedBluetoothDevice cachedDevice) {
302 private boolean addDevicePreference(CachedBluetoothDevice cachedDevice)
    [all...]
CachedBluetoothDevice.java 43 * CachedBluetoothDevice represents a remote Bluetooth device. It contains
48 public class CachedBluetoothDevice implements Comparable<CachedBluetoothDevice> {
49 private static final String TAG = "CachedBluetoothDevice";
98 private String describe(CachedBluetoothDevice cachedDevice, Profile profile) {
128 CachedBluetoothDevice(Context context, BluetoothDevice device) {
132 "Cannot use CachedBluetoothDevice without Bluetooth hardware");
162 private boolean disconnectInt(CachedBluetoothDevice cachedDevice, Profile profile) {
277 private void disconnectConnected(CachedBluetoothDevice device, Profile profile) {
284 CachedBluetoothDevice cachedDevice = cachedDeviceManager.findDevice(btDevice)
    [all...]
ConnectSpecificProfilesActivity.java 38 implements CachedBluetoothDevice.Callback, Preference.OnPreferenceChangeListener {
48 private CachedBluetoothDevice mCachedDevice;
194 public void onDeviceAttributesChanged(CachedBluetoothDevice cachedDevice) {
LocalBluetoothManager.java 279 CachedBluetoothDevice cachedDevice = mCachedDeviceManager.findDevice(device);
308 void onDeviceAdded(CachedBluetoothDevice cachedDevice);
309 void onDeviceDeleted(CachedBluetoothDevice cachedDevice);
DockService.java 354 List<CachedBluetoothDevice> cachedDevices = mBtManager.getCachedDeviceManager()
363 for (CachedBluetoothDevice device : cachedDevices) {
638 CachedBluetoothDevice cachedDevice = getCachedBluetoothDevice(mContext,
651 CachedBluetoothDevice cachedDevice = getCachedBluetoothDevice(mContext, mBtManager, device);
709 CachedBluetoothDevice cachedDevice = getCachedBluetoothDevice(mContext, mBtManager,
763 CachedBluetoothDevice cachedBluetoothDevice = getCachedBluetoothDevice(context,
765 cachedBluetoothDevice.disconnect();
768 private static CachedBluetoothDevice getCachedBluetoothDevice(Context context,
771 CachedBluetoothDevice cachedBluetoothDevice = cachedDeviceManager.findDevice(device)
    [all...]

Completed in 193 milliseconds