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

  /packages/apps/Settings/src/com/android/settings/bluetooth/
ConnectSpecificProfilesActivity.java 148 LocalBluetoothProfileManager profileManager = LocalBluetoothProfileManager
182 LocalBluetoothProfileManager profileManager = LocalBluetoothProfileManager
184 profileManager.setPreferred(mCachedDevice.getDevice(), checked);
254 LocalBluetoothProfileManager profileManager = LocalBluetoothProfileManager
257 int connectionStatus = profileManager.getConnectionStatus(device);
263 profilePref.setSummary(getProfileSummary(profileManager, profile, device,
266 profilePref.setChecked(profileManager.isPreferred(device));
281 private static int getProfileSummary(LocalBluetoothProfileManager profileManager,
286 return profileManager.getSummary(device);
CachedBluetoothDevice.java 163 LocalBluetoothProfileManager profileManager =
165 int status = profileManager.getConnectionStatus(cachedDevice.mDevice);
166 if (profileManager.disconnect(cachedDevice.mDevice)) {
236 LocalBluetoothProfileManager profileManager = LocalBluetoothProfileManager
238 if (profileManager.isPreferred(mDevice)) {
260 LocalBluetoothProfileManager profileManager = LocalBluetoothProfileManager
262 profileManager.setPreferred(mDevice, false);
278 LocalBluetoothProfileManager profileManager =
281 Set<BluetoothDevice> devices = profileManager.getConnectedDevices();
295 LocalBluetoothProfileManager profileManager
    [all...]
LocalBluetoothProfileManager.java 90 LocalBluetoothProfileManager profileManager;
92 profileManager = new A2dpProfileManager(localManager);
93 sProfileMap.put(Profile.A2DP, profileManager);
95 profileManager = new HeadsetProfileManager(localManager);
96 sProfileMap.put(Profile.HEADSET, profileManager);
98 profileManager = new OppProfileManager(localManager);
99 sProfileMap.put(Profile.OPP, profileManager);
117 LocalBluetoothProfileManager profileManager = sProfileMap.get(Profile.HEADSET);
118 if (profileManager == null) {
121 return profileManager.isProfileReady()
    [all...]
DockService.java 654 LocalBluetoothProfileManager profileManager = LocalBluetoothProfileManager
665 if (profileManager.getPreferred(device) == auto) {
712 LocalBluetoothProfileManager profileManager = LocalBluetoothProfileManager
722 int status = profileManager.getConnectionStatus(cachedDevice.getDevice());
728 profileManager.setPreferred(device, mCheckedItems[i]);
730 if (mCheckedItems[i] != profileManager.isPreferred(device)) {
    [all...]

Completed in 37 milliseconds