OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getConnectedDevices
(Results
1 - 25
of
44
) sorted by null
1
2
/frameworks/base/core/java/android/bluetooth/
IBluetoothPan.aidl
32
List<BluetoothDevice>
getConnectedDevices
();
BluetoothProfile.java
142
public List<BluetoothDevice>
getConnectedDevices
();
IBluetoothA2dp.aidl
30
List<BluetoothDevice>
getConnectedDevices
();
IBluetoothMap.aidl
32
List<BluetoothDevice>
getConnectedDevices
();
IBluetoothInputDevice.aidl
30
List<BluetoothDevice>
getConnectedDevices
();
BluetoothManager.java
95
List<BluetoothDevice> connectedDevices =
getConnectedDevices
(profile);
120
public List<BluetoothDevice>
getConnectedDevices
(int profile) {
121
if (DBG) Log.d(TAG,"
getConnectedDevices
");
IBluetoothHeadset.aidl
30
List<BluetoothDevice>
getConnectedDevices
();
BluetoothPan.java
285
public List<BluetoothDevice>
getConnectedDevices
() {
286
if (VDBG) log("
getConnectedDevices
()");
289
return mPanService.
getConnectedDevices
();
BluetoothA2dp.java
279
public List<BluetoothDevice>
getConnectedDevices
() {
280
if (VDBG) log("
getConnectedDevices
()");
283
return mService.
getConnectedDevices
();
BluetoothMap.java
264
public List<BluetoothDevice>
getConnectedDevices
() {
265
if (DBG) log("
getConnectedDevices
()");
268
return mService.
getConnectedDevices
();
BluetoothInputDevice.java
353
public List<BluetoothDevice>
getConnectedDevices
() {
354
if (VDBG) log("
getConnectedDevices
()");
357
return mService.
getConnectedDevices
();
BluetoothHeadset.java
402
public List<BluetoothDevice>
getConnectedDevices
() {
403
if (VDBG) log("
getConnectedDevices
()");
406
return mService.
getConnectedDevices
();
[
all
...]
/packages/apps/Settings/src/com/android/settings/bluetooth/
A2dpProfile.java
63
List<BluetoothDevice> deviceList = mService.
getConnectedDevices
();
106
public List<BluetoothDevice>
getConnectedDevices
() {
116
List<BluetoothDevice> sinks =
getConnectedDevices
();
163
List<BluetoothDevice> sinks = mService.
getConnectedDevices
();
HeadsetProfile.java
66
List<BluetoothDevice> deviceList = mService.
getConnectedDevices
();
115
List<BluetoothDevice> sinks = mService.
getConnectedDevices
();
126
List<BluetoothDevice> deviceList = mService.
getConnectedDevices
();
140
List<BluetoothDevice> deviceList = mService.
getConnectedDevices
();
168
public List<BluetoothDevice>
getConnectedDevices
() {
MapProfile.java
66
List<BluetoothDevice> deviceList = mService.
getConnectedDevices
();
121
List<BluetoothDevice> deviceList = mService.
getConnectedDevices
();
134
List<BluetoothDevice> deviceList = mService.
getConnectedDevices
();
163
public List<BluetoothDevice>
getConnectedDevices
() {
HidProfile.java
58
List<BluetoothDevice> deviceList = mService.
getConnectedDevices
();
115
List<BluetoothDevice> deviceList = mService.
getConnectedDevices
();
PanProfile.java
87
List<BluetoothDevice> sinks = mService.
getConnectedDevices
();
/packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
A2dpService.java
145
public List<BluetoothDevice>
getConnectedDevices
() {
147
return mStateMachine.
getConnectedDevices
();
241
public List<BluetoothDevice>
getConnectedDevices
() {
244
return service.
getConnectedDevices
();
/packages/services/Telephony/src/com/android/phone/
BluetoothManager.java
120
List<BluetoothDevice> deviceList = mBluetoothHeadset.
getConnectedDevices
();
145
List<BluetoothDevice> deviceList = mBluetoothHeadset.
getConnectedDevices
();
334
List<BluetoothDevice> deviceList = mBluetoothHeadset.
getConnectedDevices
();
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
HeadsetService.java
155
public List<BluetoothDevice>
getConnectedDevices
() {
158
return service.
getConnectedDevices
();
348
public List<BluetoothDevice>
getConnectedDevices
() {
350
return mStateMachine.
getConnectedDevices
();
/packages/apps/Bluetooth/src/com/android/bluetooth/pan/
PanService.java
129
List<BluetoothDevice> DevList =
getConnectedDevices
();
274
public List<BluetoothDevice>
getConnectedDevices
() {
277
return service.
getConnectedDevices
();
332
List<BluetoothDevice> DevList =
getConnectedDevices
();
338
List<BluetoothDevice>
getConnectedDevices
() {
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapService.java
569
public List<BluetoothDevice>
getConnectedDevices
() {
797
public List<BluetoothDevice>
getConnectedDevices
() {
798
if (VERBOSE) Log.v(TAG, "
getConnectedDevices
()");
801
return service.
getConnectedDevices
();
/packages/apps/Nfc/src/com/android/nfc/handover/
BluetoothHeadsetHandover.java
172
if (mA2dp.
getConnectedDevices
().contains(mDevice) ||
173
mHeadset.
getConnectedDevices
().contains(mDevice)) {
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
ContextMap.java
195
Set<String>
getConnectedDevices
() {
/frameworks/base/media/tests/ScoAudioTest/src/com/android/scoaudiotest/
ScoAudioTest.java
651
List<BluetoothDevice> deviceList = mBluetoothHeadset.
getConnectedDevices
();
661
List<BluetoothDevice> devices = mBluetoothHeadset.
getConnectedDevices
();
Completed in 1606 milliseconds
1
2