Lines Matching full:uuid
954 ** Description Convert a 16 bits UUID to be an standard 128 bits one.
956 ** Returns TRUE if two uuid match; FALSE otherwise.
972 ** Description Compare two UUID to see if they are the same.
974 ** Returns TRUE if two uuid match; FALSE otherwise.
982 /* any of the UUID is unspecified */
997 /* convert a 16 bits UUID to 128 bits value */
1006 /* convert a 16 bits UUID to 128 bits value */
1020 ** Description Add UUID into stream.
1022 ** Returns UUID length.
1025 UINT8 gatt_build_uuid_to_stream(UINT8 **p_dst, tBT_UUID uuid)
1030 if (uuid.len == LEN_UUID_16)
1032 UINT16_TO_STREAM (p, uuid.uu.uuid16);
1035 else if (uuid.len == LEN_UUID_128)
1037 ARRAY_TO_STREAM (p, uuid.uu.uuid128, LEN_UUID_128);
1049 ** Description Convert a 128 bits UUID into a 16 bits UUID.
1071 /* See if we can compress his UUID down to 16 or 32bit UUIDs */
1103 GATT_TRACE_WARNING0("gatt_parse_uuid_from_cmd invalid uuid size");
1414 GATT_TRACE_ERROR1("inavlid UUID len=%d", p_uuid->len);
1997 UINT16 e_handle, tBT_UUID uuid)
2003 memcpy(&msg.browse.uuid, &uuid, sizeof(tBT_UUID));
2016 ** Returns 16 bits uuid.
2095 ** Returns 16 bits uuid.
2181 ** Description Disaplay the UUID
2209 BCM_STRNCPY_S(str_buf, sizeof(str_buf), "Unknown UUID 0", 15);
2211 GATT_TRACE_DEBUG1 ("UUID=[%s]", str_buf);