HomeSort by relevance Sort by last modified time
    Searched refs:uuids (Results 1 - 25 of 27) sorted by null

1 2

  /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 265 UUID[] uuids = new UUID[ids.length];
267 uuids[i] = ids[i].getUuid();
269 service.startScanWithUuids(appIf, isServer, uuids);
501 if (client.uuids.length > 0) {
503 for (UUID search : client.uuids) {
512 if (matches < client.uuids.length) continue;
1651 List<UUID> uuids = new ArrayList<UUID>(); local
    [all...]
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothDeviceFilter.java 100 abstract boolean matches(ParcelUuid[] uuids, BluetoothClass btClass);
110 boolean matches(ParcelUuid[] uuids, BluetoothClass btClass) {
111 if (uuids != null) {
112 if (BluetoothUuid.containsAnyUuid(uuids, A2dpProfile.SINK_UUIDS)) {
115 if (BluetoothUuid.containsAnyUuid(uuids, HeadsetProfile.UUIDS)) {
131 boolean matches(ParcelUuid[] uuids, BluetoothClass btClass) {
132 if (uuids != null) {
133 if (BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.ObexObjectPush)) {
145 boolean matches(ParcelUuid[] uuids, BluetoothClass btClass)
    [all...]
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/chromium/build/mac/
strip_save_dsym 86 uuids = {}
90 return uuids
166 uuids[arch] = uuid.upper()
168 if len(uuids) == 0:
169 print >> sys.stderr, "No UUIDs in %s" % macho
171 return uuids
194 # architectures and UUIDs specified by the uuids map.
196 uuids = macho_uuids(macho)
197 if len(uuids) == 0
    [all...]
  /external/chromium_org/build/mac/
strip_save_dsym 86 uuids = {}
90 return uuids
166 uuids[arch] = uuid.upper()
168 if len(uuids) == 0:
169 print >> sys.stderr, "No UUIDs in %s" % macho
171 return uuids
194 # architectures and UUIDs specified by the uuids map.
196 uuids = macho_uuids(macho)
197 if len(uuids) == 0
    [all...]
  /external/chromium_org/device/bluetooth/
bluetooth_chromeos_unittest.cc 756 BluetoothDevice::ServiceList uuids = devices[0]->GetServices(); local
757 ASSERT_EQ(2U, uuids.size());
758 EXPECT_EQ(uuids[0], "00001800-0000-1000-8000-00805f9b34fb");
759 EXPECT_EQ(uuids[1], "00001801-0000-1000-8000-00805f9b34fb");
832 BluetoothDevice::ServiceList uuids = devices[0]->GetServices(); local
833 ASSERT_EQ(2U, uuids.size());
834 ASSERT_EQ(uuids[0], "00001800-0000-1000-8000-00805f9b34fb");
835 ASSERT_EQ(uuids[1], "00001801-0000-1000-8000-00805f9b34fb");
846 uuids.push_back("0000110c-0000-1000-8000-00805f9b34fb");
847 uuids.push_back("0000110e-0000-1000-8000-00805f9b34fb")
1014 BluetoothDevice::ServiceList uuids = device->GetServices(); local
1210 BluetoothDevice::ServiceList uuids = device->GetServices(); local
1273 BluetoothDevice::ServiceList uuids = device->GetServices(); local
1354 BluetoothDevice::ServiceList uuids = device->GetServices(); local
1417 BluetoothDevice::ServiceList uuids = device->GetServices(); local
    [all...]
bluetooth_adapter_chromeos.cc 245 property_name == properties->uuids.name())
bluetooth_device_chromeos.cc 233 return properties->uuids.value();
  /external/chromium_org/chromeos/dbus/
fake_bluetooth_device_client.cc 209 std::vector<std::string> uuids; local
210 uuids.push_back("00001800-0000-1000-8000-00805f9b34fb");
211 uuids.push_back("00001801-0000-1000-8000-00805f9b34fb");
212 properties->uuids.ReplaceValue(uuids);
592 std::vector<std::string> uuids; local
593 uuids.push_back("00001124-0000-1000-8000-00805f9b34fb");
594 properties->uuids.ReplaceValue(uuids);
616 std::vector<std::string> uuids; local
661 std::vector<std::string> uuids; local
686 std::vector<std::string> uuids; local
    [all...]
bluetooth_adapter_client.h 72 // List of 128-bit UUIDs that represent the available local services.
74 dbus::Property<std::vector<std::string> > uuids; member in struct:chromeos::BluetoothAdapterClient::Properties
bluetooth_device_client.h 51 // List of 128-bit UUIDs that represent the available remote services.
53 dbus::Property<std::vector<std::string> > uuids; member in struct:chromeos::BluetoothDeviceClient::Properties
bluetooth_adapter_client.cc 41 RegisterProperty(bluetooth_adapter::kUUIDsProperty, &uuids);
bluetooth_device_client.cc 35 RegisterProperty(bluetooth_device::kUUIDsProperty, &uuids);
  /packages/apps/Bluetooth/src/com/android/bluetooth/
Utils.java 108 public static byte[] uuidsToByteArray(ParcelUuid[] uuids) {
109 int length = uuids.length * BD_UUID_LEN;
114 for (int i = 0; i < uuids.length; i++) {
115 uuid = uuids[i].getUuid();
  /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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_uuid.py 181 # Test comparison of UUIDs.
186 # Test sorting of UUIDs (above list is in ascending order).
361 # Make sure uuid1() generates UUIDs that are actually version 1.
366 # Make sure the generated UUIDs are actually unique.
367 uuids = {}
369 uuids[u] = 1
370 equal(len(uuids.keys()), 1000)
396 # Test some known version-3 UUIDs.
420 # Make sure uuid4() generates UUIDs that are actually version 4.
425 # Make sure the generated UUIDs are actually unique
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_uuid.py 181 # Test comparison of UUIDs.
186 # Test sorting of UUIDs (above list is in ascending order).
361 # Make sure uuid1() generates UUIDs that are actually version 1.
366 # Make sure the generated UUIDs are actually unique.
367 uuids = {}
369 uuids[u] = 1
370 equal(len(uuids.keys()), 1000)
396 # Test some known version-3 UUIDs.
420 # Make sure uuid4() generates UUIDs that are actually version 4.
425 # Make sure the generated UUIDs are actually unique
    [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 621 * Get the UUIDs supported by the local Bluetooth adapter.
625 * @return the UUIDs supported by the local Bluetooth Adapter.
1630 ParcelUuid[] uuids = new ParcelUuid[mScanFilter.length]; local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
AdapterProperties.java 154 * Set local adapter UUIDs.
156 * @param uuids the uuids to be set.
158 boolean setUuids(ParcelUuid[] uuids) {
161 AbstractionLayer.BT_PROPERTY_UUIDS, Utils.uuidsToByteArray(uuids));
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
win32devicemanager.cc 39 #include <uuids.h>
  /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...]
  /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...]

Completed in 1412 milliseconds

1 2