HomeSort by relevance Sort by last modified time
    Searched defs:uuid (Results 51 - 75 of 245) sorted by null

1 23 4 5 6 7 8 910

  /frameworks/base/core/java/android/bluetooth/
BluetoothGattServer.java 38 import java.util.UUID;
121 UUID srvcUuid = srvcId.getUuid();
142 UUID srvcUuid = srvcId.getUuid();
143 UUID charUuid = charId.getUuid();
169 UUID srvcUuid = srvcId.getUuid();
170 UUID charUuid = charId.getUuid();
171 UUID descrUuid = descrId.getUuid();
201 UUID srvcUuid = srvcId.getUuid();
202 UUID charUuid = charId.getUuid();
231 UUID srvcUuid = srvcId.getUuid()
320 UUID uuid = UUID.randomUUID(); local
    [all...]
BluetoothUuid.java 23 import java.util.UUID;
35 * uuid * 2^96 + BASE_UUID
81 public static boolean isAudioSource(ParcelUuid uuid) {
82 return uuid.equals(AudioSource);
85 public static boolean isAudioSink(ParcelUuid uuid) {
86 return uuid.equals(AudioSink);
89 public static boolean isAdvAudioDist(ParcelUuid uuid) {
90 return uuid.equals(AdvAudioDist);
93 public static boolean isHandsfree(ParcelUuid uuid) {
94 return uuid.equals(Handsfree)
210 UUID uuid = parcelUuid.getUuid(); local
    [all...]
  /frameworks/base/media/java/android/media/
MediaExtractor.java 32 import java.util.UUID;
203 * @return a map of uuid-to-bytes, with the uuid specifying
206 public Map<UUID, byte[]> getPsshInfo() {
207 Map<UUID, byte[]> psshMap = null;
215 psshMap = new HashMap<UUID, byte[]>();
220 UUID uuid = new UUID(msb, lsb); local
225 psshMap.put(uuid, psshdata)
    [all...]
  /hardware/samsung_slsi/exynos5/mobicore/common/MobiCore/inc/
mcLoadFormat.h 122 mcUuid_t uuid; /**< Loadable service unique identifier (UUID). */ member in struct:__anon34395
mcSo.h 92 * The combination of service provider id and Trustlet UUID forms a unique
98 /** Trustlet UUID. */
99 mcUuid_t uuid; member in struct:__anon34401
  /packages/apps/Bluetooth/src/com/android/bluetooth/
Utils.java 32 import java.util.UUID;
100 UUID uuid = pUuid.getUuid(); local
101 msb = uuid.getMostSignificantBits();
102 lsb = uuid.getLeastSignificantBits();
112 UUID uuid; local
115 uuid = uuids[i].getUuid();
116 msb = uuid.getMostSignificantBits();
117 lsb = uuid.getLeastSignificantBits()
127 UUID uuid; local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
ContextMap.java 29 import java.util.UUID;
58 /** The UUID of the application */
59 UUID uuid; field in class:ContextMap.App
73 App(UUID uuid, T callback) {
74 this.uuid = uuid;
115 void add(UUID uuid, T callback)
    [all...]
GattDebugUtils.java 22 import java.util.UUID;
54 private static final String EXTRA_UUID = "uuid";
116 UUID uuid = getUuidExtra(intent); local
120 svc.gattTestCommand( 0x04, uuid, null, type, shdl, ehdl, 0,0);
145 Object uuid = extras != null ? extras.get(extra) : null; local
146 if (uuid != null && uuid.getClass().getName().equals("java.lang.String")) {
160 * If a string of length 4 is detected, a 16-bit hex UUID is assumed and
161 * the default Bluetooth UUID is appended
    [all...]
HandleMap.java 24 import java.util.UUID;
39 UUID uuid = null; field in class:HandleMap.Entry
46 Entry(int serverIf, int handle, UUID uuid, int serviceType, int instance) {
50 this.uuid = uuid;
55 Entry(int serverIf, int type, int handle, UUID uuid, int serviceHandle) {
59 this.uuid = uuid
    [all...]
  /bionic/libc/kernel/common/linux/
dm-ioctl.h 41 char uuid[DM_UUID_LEN]; member in struct:dm_ioctl
  /development/ndk/platforms/android-3/include/linux/
dm-ioctl.h 38 char uuid[DM_UUID_LEN]; member in struct:dm_ioctl
  /external/bluetooth/bluedroid/bta/gatt/
bta_gattc_cache.c 78 ((p_cur_srvc->service_uuid.id.uuid.len == 2) ? "uuid16" : "uuid128"),
79 p_cur_srvc->service_uuid.id.uuid.uu.uuid16,
87 APPL_TRACE_ERROR6("\t Attr[0x%04x] handle[%d] uuid[0x%04x] inst[%d] type[%s] prop[0x%1x]",
117 APPL_TRACE_ERROR5("\t rec[%d] uuid[0x%04x] s_handle[%d] e_handle[%d] is_primary[%d]",
118 i + 1, pp->uuid.uu.uuid16, pp->s_handle, pp->e_handle, pp->is_primary);
211 static UINT8 bta_gattc_get_srvc_inst_id(tBTA_GATTC_SERV *p_srvc_cb, tBT_UUID uuid)
222 if (bta_gattc_uuid_compare(&p_srvc_rec->uuid, &uuid, TRUE))
318 memcpy(&p_new_srvc->service_uuid.id.uuid, p_uuid, sizeof(tBT_UUID));
580 &p_rec->uuid,
890 tSDP_UUID uuid; local
1561 tBT_UUID uuid; local
    [all...]
  /external/bluetooth/bluedroid/btif/src/
btif_gatt_server.c 91 bt_uuid_t uuid; member in struct:__anon3388
178 bta_to_btif_uuid(&app_uuid, &p_data->reg_oper.uuid);
217 bta_to_btif_uuid(&srvc_id.id.uuid, &p_data->create.uuid);
236 bt_uuid_t uuid; local
237 bta_to_btif_uuid(&uuid, &p_data->add_result.char_uuid);
242 &uuid,
250 bt_uuid_t uuid; local
251 bta_to_btif_uuid(&uuid, &p_data->add_result.char_uuid);
256 &uuid,
357 tBT_UUID uuid; local
413 tBT_UUID uuid; local
423 tBT_UUID uuid; local
    [all...]
  /external/bluetooth/bluedroid/stack/gap/
gap_int.h 127 UINT16 uuid; member in struct:__anon3548
  /external/bluetooth/bluedroid/stack/gatt/
gatt_sr.c 651 UINT16_TO_STREAM(p, p_attr->uuid);
657 ARRAY_TO_STREAM (p, ((tGATT_ATTR128 *) p_attr)->uuid, LEN_UUID_128);
713 /* for these PDUs, uuid filter must present */
722 /* parse uuid now */
726 GATT_TRACE_DEBUG0("UUID filter does not exsit");
752 ** all primary services or discover primary service by UUID request.
761 tBT_UUID uuid, value, primary_service = {LEN_UUID_16, {GATT_UUID_PRI_SERVICE}}; local
765 reason = gatts_validate_packet_format(op_code, &len, &p_data, &uuid, &s_hdl, &e_hdl);
769 if (gatt_uuid_compare(uuid, primary_service))
796 GATT_TRACE_DEBUG1("unexpected ReadByGrpType Group: 0x%04x", uuid.uu.uuid16)
968 tBT_UUID uuid; local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/bluetooth/
bluetooth_api.cc 52 const char kInvalidUuid[] = "Invalid UUID";
58 const char kProfileNotFound[] = "Profile not found: invalid uuid";
124 if (!BluetoothDevice::IsUUIDValid(params->profile.uuid)) {
129 BluetoothPermission::CheckParam param(params->profile.uuid);
136 uuid_ = device::bluetooth_utils::CanonicalUuid(params->profile.uuid);
206 if (!BluetoothDevice::IsUUIDValid(params->profile.uuid)) {
211 std::string uuid = local
212 device::bluetooth_utils::CanonicalUuid(params->profile.uuid);
214 if (!GetEventRouter(profile())->HasProfile(uuid)) {
219 GetEventRouter(profile())->RemoveProfile(uuid);
299 std::string uuid; local
398 std::string uuid = device::bluetooth_utils::CanonicalUuid( local
    [all...]
  /external/chromium_org/chrome/browser/storage_monitor/
storage_monitor_linux.cc 52 std::string uuid = GetUdevDevicePropertyValue(device, kFsUUID); local
53 // Keep track of device uuid, to see how often we receive empty uuid values.
56 !uuid.empty());
58 if (!uuid.empty())
59 return kFSUniqueIdPrefix + uuid;
  /external/chromium_org/chrome/test/pyautolib/
policy_base.py 69 import uuid namespace
102 device_id = string.upper(str(uuid.uuid4()))
  /external/chromium_org/remoting/tools/
me2me_virtual_host.py 29 import uuid namespace
159 self.host_id = str(uuid.uuid1())
    [all...]
  /external/e2fsprogs/debugfs/
logdump.c 35 #include <uuid/uuid.h>
230 char uuid[37]; local
232 uuid_unparse(es->s_journal_uuid, uuid);
233 journal_fn = blkid_get_devname(NULL, "UUID", uuid);
  /external/e2fsprogs/e2fsck/
journal.c 27 #include "uuid/uuid.h"
344 char uuid[37]; local
346 uuid_unparse(sb->s_journal_uuid, uuid);
348 "UUID", uuid);
405 /* Make sure the journal UUID is correct */
593 uuid_t uuid; member in union:__anon19228
623 uuid_generate(u.uuid);
1047 char uuid[37], *journal_name local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
icount.c 129 struct uuid { struct
137 static void unpack_uuid(void *in, struct uuid *uu)
165 struct uuid uuid; local
167 unpack_uuid(uu, &uuid);
170 uuid.time_low, uuid.time_mid, uuid.time_hi_and_version,
171 uuid.clock_seq >> 8, uuid.clock_seq & 0xFF
181 char *fn, uuid[40]; local
    [all...]
  /external/kernel-headers/original/linux/
dm-ioctl.h 97 * this structure at the start. If a uuid is specified any
132 char uuid[DM_UUID_LEN]; /* unique identifier for member in struct:dm_ioctl
  /external/qemu/hw/
bt-sdp.c 29 int *uuid; member in struct:bt_l2cap_sdp_state_s::sdp_service_record_s
83 const uint8_t *uuid, ssize_t datalen)
88 if (datalen == 16 && memcmp(uuid + 4, bt_base_uuid, 12))
91 if (uuid[0] | uuid[1])
93 uuid += 2;
96 val = (uuid[0] << 8) | uuid[1];
97 lo = record->uuid;
572 qemu_free(sdp->service_list[i].uuid);
702 int *uuid; local
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps_upnp_i.h 85 * This uuid identifies the subscription and is randomly generated by
89 u8 uuid[UUID_LEN]; member in struct:subscription
156 const u8 uuid[UUID_LEN]);
159 const u8 uuid[UUID_LEN]);

Completed in 1743 milliseconds

1 23 4 5 6 7 8 910