Lines Matching refs:Uuid
33 using bluetooth::Uuid;
39 const Uuid PRIMARY_SERVICE = Uuid::From16Bit(GATT_UUID_PRI_SERVICE);
40 const Uuid SECONDARY_SERVICE = Uuid::From16Bit(GATT_UUID_SEC_SERVICE);
41 const Uuid INCLUDE = Uuid::From16Bit(GATT_UUID_INCLUDE_SERVICE);
42 const Uuid CHARACTERISTIC = Uuid::From16Bit(GATT_UUID_CHAR_DECLARE);
43 const Uuid CHARACTERISTIC_EXTENDED_PROPERTIES =
44 Uuid::From16Bit(GATT_UUID_CHAR_EXT_PROP);
51 static size_t UuidSize(const Uuid& uuid) { in UuidSize()
53 return (len == Uuid::kNumBytes32) ? Uuid::kNumBytes128 : len; in UuidSize()
238 if (UuidSize(d.uuid) != Uuid::kNumBytes16) { in Hash()
265 if (UuidSize(service.uuid) == Uuid::kNumBytes16) { in Hash()
268 ARRAY_TO_STREAM(p, service.uuid.To128BitLE(), (int)Uuid::kNumBytes128); in Hash()
277 if (UuidSize(is.uuid) == Uuid::kNumBytes16) { in Hash()
280 ARRAY_TO_STREAM(p, is.uuid.To128BitLE(), (int)Uuid::kNumBytes128); in Hash()
290 if (UuidSize(c.uuid) == Uuid::kNumBytes16) { in Hash()
293 ARRAY_TO_STREAM(p, c.uuid.To128BitLE(), (int)Uuid::kNumBytes128); in Hash()
297 if (UuidSize(d.uuid) != Uuid::kNumBytes16) continue; in Hash()