/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/ |
ScanClient.java | 28 UUID[] uuids; field in class:ScanClient 33 this.uuids = new UUID[0]; 36 ScanClient(int appIf, boolean isServer, UUID[] uuids) { 39 this.uuids = uuids;
|
GattService.java | 301 UUID[] uuids = new UUID[ids.length]; 303 uuids[i] = ids[i].getUuid(); 305 service.startScanWithUuids(appIf, isServer, uuids); 586 if (client.uuids.length > 0) { 588 for (UUID search : client.uuids) { 597 if (matches < client.uuids.length) continue; 1928 List<UUID> uuids = new ArrayList<UUID>(); local [all...] |
/external/chromium_org/chromeos/dbus/ |
bluetooth_adapter_client.h | 68 // List of 128-bit UUIDs that represent the available local services. 70 dbus::Property<std::vector<std::string> > uuids; member in struct:chromeos::BluetoothAdapterClient::Properties
|
bluetooth_device_client.h | 47 // List of 128-bit UUIDs that represent the available remote services. 49 dbus::Property<std::vector<std::string> > uuids; member in struct:chromeos::BluetoothDeviceClient::Properties
|
fake_bluetooth_device_client.cc | 208 std::vector<std::string> uuids; local 209 uuids.push_back("00001800-0000-1000-8000-00805f9b34fb"); 210 uuids.push_back("00001801-0000-1000-8000-00805f9b34fb"); 211 properties->uuids.ReplaceValue(uuids); 594 std::vector<std::string> uuids; local 595 uuids.push_back("00001124-0000-1000-8000-00805f9b34fb"); 596 properties->uuids.ReplaceValue(uuids); 618 std::vector<std::string> uuids; local 663 std::vector<std::string> uuids; local 688 std::vector<std::string> uuids; local [all...] |
/external/chromium_org/device/bluetooth/ |
bluetooth_chromeos_unittest.cc | 762 BluetoothDevice::ServiceList uuids = devices[0]->GetServices(); local 763 ASSERT_EQ(2U, uuids.size()); 764 EXPECT_EQ(uuids[0], "00001800-0000-1000-8000-00805f9b34fb"); 765 EXPECT_EQ(uuids[1], "00001801-0000-1000-8000-00805f9b34fb"); 838 BluetoothDevice::ServiceList uuids = devices[0]->GetServices(); local 839 ASSERT_EQ(2U, uuids.size()); 840 ASSERT_EQ(uuids[0], "00001800-0000-1000-8000-00805f9b34fb"); 841 ASSERT_EQ(uuids[1], "00001801-0000-1000-8000-00805f9b34fb"); 852 uuids.push_back("0000110c-0000-1000-8000-00805f9b34fb"); 853 uuids.push_back("0000110e-0000-1000-8000-00805f9b34fb") 1020 BluetoothDevice::ServiceList uuids = device->GetServices(); local 1216 BluetoothDevice::ServiceList uuids = device->GetServices(); local 1279 BluetoothDevice::ServiceList uuids = device->GetServices(); local 1360 BluetoothDevice::ServiceList uuids = device->GetServices(); local 1423 BluetoothDevice::ServiceList uuids = device->GetServices(); local [all...] |
/frameworks/base/core/java/android/bluetooth/ |
BluetoothA2dp.java | 479 ParcelUuid[] uuids = device.getUuids(); local 480 if (uuids == null) return false; 482 for (ParcelUuid uuid: uuids) {
|
BluetoothAdapter.java | 784 * Get the UUIDs supported by the local Bluetooth adapter. 788 * @return the UUIDs supported by the local Bluetooth Adapter. 1856 ParcelUuid[] uuids = new ParcelUuid[mScanFilter.length]; local [all...] |
/external/qemu/hw/ |
bt-sdp.c | 30 int uuids; member in struct:bt_l2cap_sdp_state_s::sdp_service_record_s 98 hi = record->uuids; 596 int *uuids) 604 (*uuids) ++; 622 len += sdp_attr_max_size(element ++, uuids); 704 record->uuids = 0; 708 &record->uuids); 710 record->uuids = 1 << ffs(record->uuids - 1); 714 qemu_mallocz(record->uuids * sizeof(*record->uuid)) [all...] |
/external/bluetooth/bluedroid/btif/src/ |
btif_sock_rfc.c | 62 char uuids[128]; local 63 uuid_to_string((bt_uuid_t*)p_uuid, uuids); 64 ALOGD("%s: %s", title, uuids); [all...] |
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
LocalBluetoothProfileManager.java | 108 ParcelUuid[] uuids = adapter.getUuids(); local 110 // uuids may be null if Bluetooth is turned off 111 if (uuids != null) { 112 updateLocalProfiles(uuids); 142 * @param uuids 144 void updateLocalProfiles(ParcelUuid[] uuids) { 146 if (BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.AudioSource)) { 158 if (BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.Handsfree_AG) || 159 BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.HSP_AG)) { 172 if (BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.ObexObjectPush)) 209 ParcelUuid[] uuids = mLocalAdapter.getUuids(); local [all...] |
CachedBluetoothDevice.java | 103 * again with the new UUIDs 214 // Attempt to connect if UUIDs are available. Otherwise, 223 // condition with carkits during pairing, wherein RemoteDevice.UUIDs have been updated 227 // If UUIDs are not available yet, connect will be happen 484 ParcelUuid[] uuids = mDevice.getUuids(); local 485 if (uuids == null) return false; 490 mProfileManager.updateProfiles(uuids, localUuids, mProfiles, mRemovedProfiles, 499 for (ParcelUuid uuid : uuids) {
|
/external/bluetooth/bluedroid/bta/jv/ |
bta_jv_act.c | 57 char uuids[128]; local 58 uuid_to_string((bt_uuid_t*)p_uuid, uuids); 59 APPL_TRACE_DEBUG2("%s: %s", title, uuids); [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar | |