Home | History | Annotate | Download | only in gatt

Lines Matching refs:uuid

48 ** Description      Convert a 16 bits UUID to be an standard 128 bits one.
50 ** Returns TRUE if two uuid match; FALSE otherwise.
65 ** Description Compare two UUID to see if they are the same.
67 ** Returns TRUE if two uuid match; FALSE otherwise.
75 /* any of the UUID is unspecified */
93 /* convert a 16 bits UUID to 128 bits value */
102 /* convert a 16 bits UUID to 128 bits value */
446 ** Description pack UUID into a stream.
485 p_des->uuid.len = p_src->uuid.len;
487 if (p_des->uuid.len == LEN_UUID_16)
489 p_des->uuid.uu.uuid16 = p_src->uuid.uu.uuid16;
491 else if (p_des->uuid.len == LEN_UUID_128)
493 memcpy(p_des->uuid.uu.uuid128, p_src->uuid.uu.uuid128, LEN_UUID_128);
508 bta_gattc_uuid_compare (p_src->uuid, p_tar->uuid, TRUE ))
623 tBT_UUID uuid = {LEN_UUID_16, {GATT_UUID_CHAR_AGG_FORMAT}};
628 if (bta_gattc_uuid_compare (uuid, descr_uuid, TRUE))