Lines Matching refs:uuid
935 ** Description Convert a 16 bits UUID to be an standard 128 bits one.
937 ** Returns TRUE if two uuid match; FALSE otherwise.
953 ** Description Compare two UUID to see if they are the same.
955 ** Returns TRUE if two uuid match; FALSE otherwise.
963 /* any of the UUID is unspecified */
978 /* convert a 16 bits UUID to 128 bits value */
987 /* convert a 16 bits UUID to 128 bits value */
1001 ** Description Add UUID into stream.
1003 ** Returns UUID length.
1006 UINT8 gatt_build_uuid_to_stream(UINT8 **p_dst, tBT_UUID uuid)
1011 if (uuid.len == LEN_UUID_16)
1013 UINT16_TO_STREAM (p, uuid.uu.uuid16);
1016 else if (uuid.len == LEN_UUID_128)
1018 ARRAY_TO_STREAM (p, uuid.uu.uuid128, LEN_UUID_128);
1030 ** Description Convert a 128 bits UUID into a 16 bits UUID.
1052 /* See if we can compress his UUID down to 16 or 32bit UUIDs */
1084 GATT_TRACE_WARNING0("gatt_parse_uuid_from_cmd invalid uuid size");
1396 GATT_TRACE_ERROR1("inavlid UUID len=%d", p_uuid->len);
1979 UINT16 e_handle, tBT_UUID uuid)
1985 memcpy(&msg.browse.uuid, &uuid, sizeof(tBT_UUID));
1998 ** Returns 16 bits uuid.
2077 ** Returns 16 bits uuid.
2162 ** Description Disaplay the UUID
2190 BCM_STRNCPY_S(str_buf, sizeof(str_buf), "Unknown UUID 0", 15);
2192 GATT_TRACE_DEBUG1 ("UUID=[%s]", str_buf);