/packages/services/Telecomm/src/com/android/server/telecom/ |
BluetoothManager.java | 141 List<BluetoothDevice> deviceList = mBluetoothHeadset.getConnectedDevices(); 143 if (deviceList.size() > 0) { 145 for (int i = 0; i < deviceList.size(); i++) { 146 BluetoothDevice device = deviceList.get(i); 165 List<BluetoothDevice> deviceList = mBluetoothHeadset.getConnectedDevices(); 167 if (deviceList.isEmpty()) { 170 for (int i = 0; i < deviceList.size(); i++) { 171 BluetoothDevice device = deviceList.get(i); 261 List<BluetoothDevice> deviceList = mBluetoothHeadset.getConnectedDevices(); 263 if (deviceList.size() > 0) [all...] |
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
HidProfile.java | 58 List<BluetoothDevice> deviceList = mService.getConnectedDevices(); 59 while (!deviceList.isEmpty()) { 60 BluetoothDevice nextDevice = deviceList.remove(0); 115 List<BluetoothDevice> deviceList = mService.getConnectedDevices(); 117 return !deviceList.isEmpty() && deviceList.get(0).equals(device)
|
HeadsetProfile.java | 66 List<BluetoothDevice> deviceList = mService.getConnectedDevices(); 67 while (!deviceList.isEmpty()) { 68 BluetoothDevice nextDevice = deviceList.remove(0); 126 List<BluetoothDevice> deviceList = mService.getConnectedDevices(); 127 if (!deviceList.isEmpty()) { 128 for (BluetoothDevice dev : deviceList) { 145 List<BluetoothDevice> deviceList = mService.getConnectedDevices(); 146 if (!deviceList.isEmpty()){ 147 for (BluetoothDevice dev : deviceList) {
|
MapProfile.java | 66 List<BluetoothDevice> deviceList = mService.getConnectedDevices(); 67 while (!deviceList.isEmpty()) { 68 BluetoothDevice nextDevice = deviceList.remove(0); 121 List<BluetoothDevice> deviceList = mService.getConnectedDevices(); 122 if (!deviceList.isEmpty() && deviceList.get(0).equals(device)) { 134 List<BluetoothDevice> deviceList = mService.getConnectedDevices(); 137 return !deviceList.isEmpty() && deviceList.get(0).equals(device)
|
A2dpProfile.java | 63 List<BluetoothDevice> deviceList = mService.getConnectedDevices(); 64 while (!deviceList.isEmpty()) { 65 BluetoothDevice nextDevice = deviceList.remove(0);
|
/external/chromium_org/third_party/skia/tools/skpdiff/ |
skpdiff_main.cpp | 76 cl::vector<cl::Device> deviceList; 77 platform.getDevices(CL_DEVICE_TYPE_ALL, &deviceList); 78 SkDebugf("The number of devices is %u\n", deviceList.size()); 81 *device = deviceList[0]; 88 *context = cl::Context(deviceList, NULL, error_notify, NULL, &contextErr);
|
/external/skia/tools/skpdiff/ |
skpdiff_main.cpp | 67 cl::vector<cl::Device> deviceList; 68 platform.getDevices(CL_DEVICE_TYPE_ALL, &deviceList); 69 SkDebugf("The number of devices is %u\n", deviceList.size()); 72 *device = deviceList[0]; 79 *context = cl::Context(deviceList, NULL, error_notify, NULL, &contextErr);
|
/frameworks/base/wifi/java/android/net/wifi/p2p/ |
WifiP2pDeviceList.java | 203 WifiP2pDeviceList deviceList = new WifiP2pDeviceList(); 207 deviceList.update((WifiP2pDevice)in.readParcelable(null)); 209 return deviceList;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/ |
DeviceMenuListener.java | 75 List<Device> deviceList = chooser.getDeviceList(); 83 for (Device device : deviceList) { 108 if (!deviceList.isEmpty()) { 110 for (Device device : deviceList) {
|
ConfigurationDescription.java | 165 * @param deviceList list of available devices 172 @NonNull List<Device> deviceList) { 222 for (Device d : deviceList) {
|
ConfigurationMatcher.java | 251 List<Device> deviceList = mConfigChooser.getDeviceList(); 304 for (Device device : deviceList) { [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
RenderPreviewList.java | 88 void load(List<Device> deviceList) throws IOException { 91 load(file, deviceList); 115 void load(File file, List<Device> deviceList) throws IOException { 126 mProject, element, deviceList);
|
/frameworks/base/media/tests/ScoAudioTest/src/com/android/scoaudiotest/ |
ScoAudioTest.java | 660 List<BluetoothDevice> deviceList = mBluetoothHeadset.getConnectedDevices(); 661 if (deviceList.size() > 0) { 662 mBluetoothHeadsetDevice = deviceList.get(0);
|
/packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/ |
A2dpSinkStateMachine.java | 660 List<BluetoothDevice> deviceList = new ArrayList<BluetoothDevice>(); 672 deviceList.add(device); 676 return deviceList; [all...] |
A2dpStateMachine.java | 654 List<BluetoothDevice> deviceList = new ArrayList<BluetoothDevice>(); 666 deviceList.add(device); 670 return deviceList; [all...] |
/external/chromium_org/chrome/browser/resources/inspect/ |
inspect.js | 156 var deviceList = $('devices-list'); 157 if (alreadyDisplayed(deviceList, devices)) 167 deviceList.querySelectorAll('.device'), 180 deviceList.appendChild(deviceSection);
|
/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
BluetoothMapService.java | 485 List<BluetoothDevice> deviceList = new ArrayList<BluetoothDevice>(); 497 deviceList.add(device); 502 return deviceList; [all...] |
/packages/apps/VoiceDialer/src/com/android/voicedialer/ |
VoiceDialerActivity.java | 421 List<BluetoothDevice> deviceList = mBluetoothHeadset.getConnectedDevices(); 423 if (deviceList.size() > 0) { 424 mBluetoothDevice = deviceList.get(0); [all...] |
/frameworks/av/services/audiopolicy/ |
AudioPolicyManager.cpp | 469 DeviceVector deviceList = 471 if (!deviceList.isEmpty()) { 472 return deviceList.itemAt(0); 474 deviceList = mHwModules[i]->mDeclaredDevices.getDevicesFromType(device); 475 if (!deviceList.isEmpty()) { 476 return deviceList.itemAt(0); 493 DeviceVector deviceList; 522 deviceList = mAvailableOutputDevices.getDevicesFromType(rxDevice); 523 ALOG_ASSERT(!deviceList.isEmpty(), 525 sp<DeviceDescriptor> rxSinkDeviceDesc = deviceList.itemAt(0) [all...] |
/frameworks/base/media/java/android/media/ |
AudioService.java | [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/ |
GattService.java | [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/ |
HeadsetClientStateMachine.java | [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/ |
AdapterService.java | [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/ |
HeadsetStateMachine.java | [all...] |
/prebuilts/gradle-plugin/com/android/tools/build/builder/0.5.7/ |
builder-0.5.7.jar | |