Home | History | Annotate | Download | only in gatt

Lines Matching refs:LEN_UUID_128

79 static const UINT8  base_uuid[LEN_UUID_128] = {0xFB, 0x34, 0x9B, 0x5F, 0x80, 0x00, 0x00, 0x80,
994 void gatt_convert_uuid16_to_uuid128(UINT8 uuid_128[LEN_UUID_128], UINT16 uuid_16)
996 UINT8 *p = &uuid_128[LEN_UUID_128 - 4];
998 memcpy (uuid_128, base_uuid, LEN_UUID_128);
1012 void gatt_convert_uuid32_to_uuid128(UINT8 uuid_128[LEN_UUID_128], UINT32 uuid_32)
1014 UINT8 *p = &uuid_128[LEN_UUID_128 - 4];
1016 memcpy (uuid_128, base_uuid, LEN_UUID_128);
1031 UINT8 su[LEN_UUID_128], tu[LEN_UUID_128];
1082 return(memcmp(ps, pt, LEN_UUID_128) == 0);
1107 p += LEN_UUID_128;
1108 len = LEN_UUID_128;
1110 else if (uuid.len == LEN_UUID_128)
1112 ARRAY_TO_STREAM (p, uuid.uu.uuid128, LEN_UUID_128);
1113 len = LEN_UUID_128;
1145 case LEN_UUID_128:
1148 for (xx = 0; xx < LEN_UUID_128 - 4; xx++)
1158 if ((p_uuid[LEN_UUID_128 - 1] == 0) && (p_uuid[LEN_UUID_128 - 2] == 0))
1160 p_uuid += (LEN_UUID_128 - 4);
1166 p_uuid += (LEN_UUID_128 - LEN_UUID_32);
1173 p_uuid_rec->len = LEN_UUID_128;
1174 memcpy(p_uuid_rec->uu.uuid128, p_uuid, LEN_UUID_128);
1176 *p_data += LEN_UUID_128;
1553 case LEN_UUID_128:
1555 ARRAY_TO_BE_STREAM_REVERSE (p, p_uuid->uu.uuid128, LEN_UUID_128);
2357 else if (bt_uuid.len == LEN_UUID_128)