Home | History | Annotate | Download | only in gatt

Lines Matching full:uuid

51 ** Description      Convert a 16 bits UUID to be an standard 128 bits one.
53 ** Returns TRUE if two uuid match; FALSE otherwise.
68 ** Description Compare two UUID to see if they are the same.
70 ** Returns TRUE if two uuid match; FALSE otherwise.
78 /* any of the UUID is unspecified */
96 /* convert a 16 bits UUID to 128 bits value */
105 /* convert a 16 bits UUID to 128 bits value */
583 ** Description pack UUID into a stream.
622 p_des->uuid.len = p_src->uuid.len;
624 if (p_des->uuid.len == LEN_UUID_16)
626 p_des->uuid.uu.uuid16 = p_src->uuid.uu.uuid16;
628 else if (p_des->uuid.len == LEN_UUID_128)
630 memcpy(p_des->uuid.uu.uuid128, p_src->uuid.uu.uuid128, LEN_UUID_128);
645 bta_gattc_uuid_compare (&p_src->uuid, &p_tar->uuid, TRUE ))
762 tBT_UUID uuid = {LEN_UUID_16, {GATT_UUID_CHAR_AGG_FORMAT}};
767 if (bta_gattc_uuid_compare (&uuid, p_descr_uuid, TRUE))