HomeSort by relevance Sort by last modified time
    Searched defs:uuids (Results 1 - 14 of 14) sorted by null

  /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...]
  /external/chromium_org/chromeos/dbus/
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
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...]
  /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...]
  /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...]
  /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 

Completed in 639 milliseconds