Home
last modified time | relevance | path

Searched refs:Uuid (Results 1 – 25 of 269) sorted by relevance

1234567891011

/packages/modules/Bluetooth/system/gd/hci/
Duuid_unittest.cc24 using bluetooth::hci::Uuid;
26 static const Uuid ONES = Uuid::From128BitBE(
27Uuid::UUID128Bit{{0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x…
29 static const Uuid SEQUENTIAL = Uuid::From128BitBE(
30Uuid::UUID128Bit{{0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef, 0xab, 0xcd, 0xef, 0x01, 0x23, 0x…
32 static const Uuid kBase = Uuid::From128BitBE(
33Uuid::UUID128Bit{{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x80, 0x00, 0x00, 0x80, 0x5f, 0x…
35 static const Uuid kBaseLe = Uuid::From128BitLE(Uuid::UUID128Bit{
54 ASSERT_TRUE(Uuid::kEmpty.IsEmpty()); in TEST()
59 ASSERT_TRUE(Uuid::kNumBytes16 == kBase.GetShortestRepresentationSize()); in TEST()
[all …]
Duuid.cc29 using UUID128Bit = Uuid::UUID128Bit;
31 const Uuid Uuid::kEmpty = Uuid::From128BitBE(UUID128Bit{{0x00}});
34 Uuid kBase = Uuid::From128BitBE(
38 size_t Uuid::GetShortestRepresentationSize() const { in GetShortestRepresentationSize()
50 bool Uuid::Is16Bit() const { in Is16Bit()
54 uint16_t Uuid::As16Bit() const { in As16Bit()
58 uint32_t Uuid::As32Bit() const { in As32Bit()
62 std::optional<Uuid> Uuid::FromString(const std::string& uuid) { in FromString()
67 Uuid ret = kBase; in FromString()
129 std::optional<Uuid> Uuid::FromLegacyConfigString(const std::string& uuid) { in FromLegacyConfigString()
[all …]
Duuid.h38 class Uuid final : public storage::Serializable<Uuid> {
46 static const Uuid kEmpty; // 00000000-0000-0000-0000-000000000000
50 Uuid() = default;
64 static std::optional<Uuid> FromString(const std::string& uuid);
65 static std::optional<Uuid> FromLegacyConfigString(const std::string& uuid);
87 static Uuid From16Bit(uint16_t uuid16bit);
90 static Uuid From32Bit(uint32_t uuid32bit);
93 static Uuid From128BitBE(const UUID128Bit& uuid) { in From128BitBE()
94 Uuid u(uuid); in From128BitBE()
100 static Uuid From128BitBE(const uint8_t* uuid);
[all …]
/packages/modules/Bluetooth/system/bta/test/gatt/
Ddatabase_builder_sample_device_test.cc27 using bluetooth::Uuid;
44 Uuid SERVICE_1_UUID = Uuid::FromString("00001800-0000-1000-8000-00805f9b34fb");
45 Uuid SERVICE_2_UUID = Uuid::FromString("00001801-0000-1000-8000-00805f9b34fb");
46 Uuid SERVICE_3_UUID = Uuid::FromString("0000180f-0000-1000-8000-00805f9b34fb");
47 Uuid SERVICE_4_UUID = Uuid::FromString("0000fef5-0000-1000-8000-00805f9b34fb");
48 Uuid SERVICE_5_UUID = Uuid::FromString("0000180a-0000-1000-8000-00805f9b34fb");
49 Uuid SERVICE_6_UUID = Uuid::FromString("0000fe55-0000-1000-8000-00805f9b34fb");
51 Uuid SERVICE_1_CHAR_1_UUID = Uuid::FromString("00002a00-0000-1000-8000-00805f9b34fb");
52 Uuid SERVICE_1_CHAR_2_UUID = Uuid::FromString("00002a01-0000-1000-8000-00805f9b34fb");
53 Uuid SERVICE_1_CHAR_3_UUID = Uuid::FromString("00002a04-0000-1000-8000-00805f9b34fb");
[all …]
Ddatabase_test.cc29 using bluetooth::Uuid;
35 const Uuid PRIMARY_SERVICE = Uuid::From16Bit(GATT_UUID_PRI_SERVICE);
36 const Uuid SECONDARY_SERVICE = Uuid::From16Bit(GATT_UUID_SEC_SERVICE);
37 const Uuid INCLUDE = Uuid::From16Bit(GATT_UUID_INCLUDE_SERVICE);
38 const Uuid CHARACTERISTIC = Uuid::From16Bit(GATT_UUID_CHAR_DECLARE);
39 const Uuid CHARACTERISTIC_EXTENDED_PROPERTIES =
40 Uuid::From16Bit(GATT_UUID_CHAR_EXT_PROP);
42 Uuid SERVICE_1_UUID = Uuid::FromString("1800");
43 Uuid SERVICE_2_UUID = Uuid::FromString("1801");
44 Uuid SERVICE_1_CHAR_1_UUID = Uuid::FromString("2a00");
[all …]
Ddatabase_builder_test.cc28 using bluetooth::Uuid;
39 Uuid SERVICE_1_UUID = Uuid::FromString("00001800-0000-1000-8000-00805f9b34fb");
40 Uuid SERVICE_2_UUID = Uuid::FromString("00001801-0000-1000-8000-00805f9b34fb");
41 Uuid SERVICE_3_UUID = Uuid::FromString("0000180f-0000-1000-8000-00805f9b34fb");
42 Uuid SERVICE_4_UUID = Uuid::FromString("0000fef5-0000-1000-8000-00805f9b34fb");
43 Uuid SERVICE_5_UUID = Uuid::FromString("0000180a-0000-1000-8000-00805f9b34fb");
44 Uuid SERVICE_1_CHAR_1_UUID =
45 Uuid::FromString("00002a00-0000-1000-8000-00805f9b34fb");
46 Uuid SERVICE_1_CHAR_1_DESC_1_UUID =
47 Uuid::FromString("00002902-0000-1000-8000-00805f9b34fb");
/packages/modules/Bluetooth/system/types/test/bluetooth/
Duuid_unittest.cc22 using bluetooth::Uuid;
24 static const Uuid ONES = Uuid::From128BitBE(
25 Uuid::UUID128Bit{{0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11,
28 static const Uuid SEQUENTIAL = Uuid::From128BitBE(
29 Uuid::UUID128Bit{{0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef, 0xab,
32 constexpr Uuid kBase = Uuid::From128BitBE(
33 Uuid::UUID128Bit{{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x80,
37 EXPECT_TRUE(Uuid::kEmpty.IsEmpty()); in TEST()
42 EXPECT_TRUE(Uuid::kNumBytes16 == kBase.GetShortestRepresentationSize()); in TEST()
43 EXPECT_TRUE(Uuid::kNumBytes32 == in TEST()
[all …]
/packages/modules/Bluetooth/system/types/bluetooth/
Duuid.cc31 static_assert(sizeof(Uuid) == 16, "Uuid must be 16 bytes long!");
33 using UUID128Bit = Uuid::UUID128Bit;
35 const Uuid Uuid::kEmpty = Uuid::From128BitBE(UUID128Bit{{0x00}});
38 constexpr Uuid kBase = Uuid::From128BitBE(
43 size_t Uuid::GetShortestRepresentationSize() const { in GetShortestRepresentationSize()
54 bool Uuid::Is16Bit() const { in Is16Bit()
58 uint16_t Uuid::As16Bit() const { return (((uint16_t)uu[2]) << 8) + uu[3]; } in As16Bit()
60 uint32_t Uuid::As32Bit() const { in As32Bit()
65 Uuid Uuid::FromString(const std::string& uuid, bool* is_valid) { in FromString()
67 Uuid ret = kBase; in FromString()
[all …]
Duuid.h36 class Uuid final {
44 static const Uuid kEmpty; // 00000000-0000-0000-0000-000000000000
48 Uuid() = default;
69 static Uuid FromString(const std::string& uuid, bool* is_valid = nullptr);
72 static Uuid From16Bit(uint16_t uuid16bit);
75 static Uuid From32Bit(uint32_t uuid32bit);
78 static constexpr Uuid From128BitBE(const UUID128Bit& uuid) { in From128BitBE()
79 Uuid u(uuid); in From128BitBE()
85 static Uuid From128BitBE(const uint8_t* uuid);
88 static Uuid From128BitLE(const UUID128Bit& uuid);
[all …]
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Duuid.rs8 use bt_topshim::btif::Uuid;
118 static ref PROFILES: HashMap<Uuid, Profile> = [
119 (Uuid::from_string(A2DP_SINK).unwrap(), Profile::A2dpSink),
120 (Uuid::from_string(A2DP_SOURCE).unwrap(), Profile::A2dpSource),
121 (Uuid::from_string(ADV_AUDIO_DIST).unwrap(), Profile::AdvAudioDist),
122 (Uuid::from_string(BAS).unwrap(), Profile::Bas),
123 (Uuid::from_string(DIS).unwrap(), Profile::Dis),
124 (Uuid::from_string(HSP).unwrap(), Profile::Hsp),
125 (Uuid::from_string(HSP_AG).unwrap(), Profile::HspAg),
126 (Uuid::from_string(HFP).unwrap(), Profile::Hfp),
[all …]
Dbluetooth_admin.rs13 use bt_topshim::btif::{BluetoothProperty, Uuid};
21 fn is_service_allowed(&self, service: Uuid) -> bool; in is_service_allowed()
23 fn set_allowed_services(&mut self, services: Vec<Uuid>) -> bool; in set_allowed_services()
25 fn get_allowed_services(&self) -> Vec<Uuid>; in get_allowed_services() argument
41 pub service_blocked: Vec<Uuid>,
48 fn on_service_allowlist_changed(&mut self, allowlist: Vec<Uuid>); in on_service_allowlist_changed() argument
64 allowed_services: HashSet<Uuid>,
92 fn get_blocked_services(&self, remote_uuids: &Vec<Uuid>) -> Vec<Uuid> { in get_blocked_services() argument
96 fn get_affected_status(&self, blocked_services: &Vec<Uuid>) -> bool { in get_affected_status()
119 let allowed_services: Vec<Uuid> = json in load_config_from_json()
[all …]
/packages/modules/Bluetooth/system/btif/include/
Dbtif_sock_sdp.h27 static const bluetooth::Uuid UUID_OBEX_OBJECT_PUSH =
28 bluetooth::Uuid::From16Bit(0x1105);
29 static const bluetooth::Uuid UUID_PBAP_PCE = bluetooth::Uuid::From16Bit(0x112E);
30 static const bluetooth::Uuid UUID_PBAP_PSE = bluetooth::Uuid::From16Bit(0x112F);
31 static const bluetooth::Uuid UUID_MAP_MAS = bluetooth::Uuid::From16Bit(0x1132);
32 static const bluetooth::Uuid UUID_SAP = bluetooth::Uuid::From16Bit(0x112D);
33 static const bluetooth::Uuid UUID_SPP = bluetooth::Uuid::From16Bit(0x1101);
34 static const bluetooth::Uuid UUID_DIP = bluetooth::Uuid::From16Bit(0x1200);
35 static const bluetooth::Uuid UUID_MAP_MNS = bluetooth::Uuid::From16Bit(0x1133);
37 int add_rfc_sdp_rec(const char* name, bluetooth::Uuid uuid, int scn);
[all …]
/packages/modules/Bluetooth/system/rust/src/core/
Duuid.rs14 pub struct Uuid([u8; 16]); struct
18 impl Uuid { impl
36 impl TryFrom<UuidView<'_>> for Uuid { implementation
52 impl From<Uuid16View<'_>> for Uuid { implementation
58 impl From<Uuid128View<'_>> for Uuid { implementation
69 impl From<Uuid> for UuidBuilder {
70 fn from(value: Uuid) -> Self { in from()
76 impl TryFrom<Uuid> for Uuid16Builder {
77 type Error = Uuid;
79 fn try_from(value: Uuid) -> Result<Self, Self::Error> { in try_from()
[all …]
/packages/modules/Bluetooth/system/bta/groups/
Dgroups_test.cc60 (const RawAddress& address, const bluetooth::Uuid& uuid,
67 (const bluetooth::Uuid& uuid, int group_id), (override));
71 (const RawAddress& address, const bluetooth::Uuid& uuid,
115 EXPECT_CALL(*callbacks, OnGroupAdded(GetTestAddress(1), Uuid::kEmpty, 7)); in TEST_F()
117 DeviceGroups::Get()->AddDevice(GetTestAddress(1), Uuid::kEmpty, 7); in TEST_F()
125 DeviceGroups::Get()->AddDevice(GetTestAddress(1), Uuid::kEmpty, 7); in TEST_F()
126 DeviceGroups::Get()->AddDevice(GetTestAddress(2), Uuid::kEmpty, 7); in TEST_F()
133 DeviceGroups::Get()->AddDevice(GetTestAddress(2), Uuid::kEmpty, 7); in TEST_F()
136 DeviceGroups::Get()->GetGroupId(GetTestAddress(2), Uuid::kEmpty)); in TEST_F()
138 DeviceGroups::Get()->GetGroupId(GetTestAddress(3), Uuid::kEmpty)); in TEST_F()
[all …]
/packages/modules/Bluetooth/system/bta/ras/
Dras_types.h36 static const bluetooth::Uuid kRangingService =
37 bluetooth::Uuid::From16Bit(kRangingService16Bit);
38 static const bluetooth::Uuid kRasFeaturesCharacteristic =
39 bluetooth::Uuid::From16Bit(kRasFeaturesCharacteristic16bit);
40 static const bluetooth::Uuid kRasRealTimeRangingDataCharacteristic =
41 bluetooth::Uuid::From16Bit(kRasRealTimeRangingDataCharacteristic16bit);
42 static const bluetooth::Uuid kRasOnDemandDataCharacteristic =
43 bluetooth::Uuid::From16Bit(kRasOnDemandDataCharacteristic16bit);
44 static const bluetooth::Uuid kRasControlPointCharacteristic =
45 bluetooth::Uuid::From16Bit(kRasControlPointCharacteristic16bit);
[all …]
/packages/modules/Bluetooth/system/test/suite/gatt/
Dgatt_unittest.cc31 bluetooth::Uuid gatt_client_uuid = bluetooth::Uuid::From128BitBE( in TEST_F()
32 bluetooth::os::GenerateRandom<bluetooth::Uuid::kNumBytes128>()); in TEST_F()
44 bluetooth::Uuid gatt_server_uuid = bluetooth::Uuid::From128BitBE( in TEST_F()
45 bluetooth::os::GenerateRandom<bluetooth::Uuid::kNumBytes128>()); in TEST_F()
57 bluetooth::Uuid gatt_server_uuid = bluetooth::Uuid::From128BitBE( in TEST_F()
58 bluetooth::os::GenerateRandom<bluetooth::Uuid::kNumBytes128>()); in TEST_F()
65 bluetooth::Uuid srvc_uuid = bluetooth::Uuid::From128BitBE( in TEST_F()
66 bluetooth::os::GenerateRandom<bluetooth::Uuid::kNumBytes128>()); in TEST_F()
69 bluetooth::Uuid char_uuid = bluetooth::Uuid::From128BitBE( in TEST_F()
70 bluetooth::os::GenerateRandom<bluetooth::Uuid::kNumBytes128>()); in TEST_F()
[all …]
/packages/modules/Bluetooth/system/stack/gatt/
Dgatt_sr_hash.cc29 using bluetooth::Uuid;
39 if (attr_it->uuid == Uuid::From16Bit(GATT_UUID_PRI_SERVICE) || in calculate_database_info_size()
40 attr_it->uuid == Uuid::From16Bit(GATT_UUID_SEC_SERVICE)) { in calculate_database_info_size()
43 } else if (attr_it->uuid == Uuid::From16Bit(GATT_UUID_INCLUDE_SERVICE)){ in calculate_database_info_size()
46 } else if (attr_it->uuid == Uuid::From16Bit(GATT_UUID_CHAR_DECLARE)) { in calculate_database_info_size()
49 } else if (attr_it->uuid == Uuid::From16Bit(GATT_UUID_CHAR_DESCRIPTION) || in calculate_database_info_size()
50 attr_it->uuid == Uuid::From16Bit(GATT_UUID_CHAR_CLIENT_CONFIG) || in calculate_database_info_size()
51 attr_it->uuid == Uuid::From16Bit(GATT_UUID_CHAR_SRVR_CONFIG) || in calculate_database_info_size()
52 attr_it->uuid == Uuid::From16Bit(GATT_UUID_CHAR_PRESENT_FORMAT) || in calculate_database_info_size()
53 attr_it->uuid == Uuid::From16Bit(GATT_UUID_CHAR_AGG_FORMAT)) { in calculate_database_info_size()
[all …]
/packages/modules/Bluetooth/system/stack/test/
Dstack_gatt_sr_hash_test.cc24 using bluetooth::Uuid;
44 gatts_init_service_db(local_db[0], Uuid::From16Bit(0x1800), true, 0x0001, 5); in TEST()
48 Uuid::From16Bit(0x2A00)); in TEST()
50 Uuid::From16Bit(0x2A01)); in TEST()
53 gatts_init_service_db(local_db[1], Uuid::From16Bit(0x1801), true, 0x0006, 8); in TEST()
55 Uuid::From16Bit(0x2A05)); in TEST()
56 gatts_add_char_descr(local_db[1], GATT_CHAR_PROP_BIT_READ, Uuid::From16Bit(0x2902)); in TEST()
60 Uuid::From16Bit(0x2B29)); in TEST()
62 Uuid::From16Bit(0x2B2A)); in TEST()
65 gatts_init_service_db(local_db[2], Uuid::From16Bit(0x1808), true, 0x000E, 6); in TEST()
[all …]
/packages/modules/Bluetooth/system/bta/vc/
Dtypes.h52 static const Uuid kVolumeControlUuid = Uuid::From16Bit(0x1844);
53 static const Uuid kVolumeControlStateUuid = Uuid::From16Bit(0x2B7D);
54 static const Uuid kVolumeControlPointUuid = Uuid::From16Bit(0x2B7E);
55 static const Uuid kVolumeFlagsUuid = Uuid::From16Bit(0x2B7F);
57 static const Uuid kVolumeOffsetUuid = Uuid::From16Bit(0x1845);
58 static const Uuid kVolumeOffsetStateUuid = Uuid::From16Bit(0x2B80);
59 static const Uuid kVolumeOffsetLocationUuid = Uuid::From16Bit(0x2B81);
60 static const Uuid kVolumeOffsetControlPointUuid = Uuid::From16Bit(0x2B82);
61 static const Uuid kVolumeOffsetOutputDescriptionUuid = Uuid::From16Bit(0x2B83);
/packages/modules/Bluetooth/system/bta/test/
Dbta_dm_cust_uuid_test.cc25 using bluetooth::Uuid;
30 static const Uuid uuid1 = Uuid::From128BitBE(
31 Uuid::UUID128Bit{{0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88,
33 static const Uuid uuid2 = Uuid::From128BitBE(
34 Uuid::UUID128Bit{{0x00, 0x00, 0x00, 0x00, 0x22, 0x22, 0x22, 0x22, 0x33,
51 curr0_expect.custom_uuid.UpdateUuid(Uuid::kEmpty); in TEST_F()
52 curr1_expect.custom_uuid.UpdateUuid(Uuid::kEmpty); in TEST_F()
55 ASSERT_STREQ(Uuid::kEmpty.ToString().c_str(), curr0.custom_uuid.ToString().c_str()); in TEST_F()
58 ASSERT_STREQ(Uuid::kEmpty.ToString().c_str(), curr1.custom_uuid.ToString().c_str()); in TEST_F()
/packages/modules/Bluetooth/system/gd/discovery/device/
Deir_data.cc62 while (std::distance(it, gap_data.data_.end()) >= (signed)Uuid::kNumBytes16) { in GetUuids16()
64 it += Uuid::kNumBytes16; in GetUuids16()
75 while (std::distance(it, gap_data.data_.end()) >= (signed)Uuid::kNumBytes16) { in GetUuidsIncomplete16()
77 it += Uuid::kNumBytes16; in GetUuidsIncomplete16()
88 while (std::distance(it, gap_data.data_.end()) >= (signed)Uuid::kNumBytes32) { in GetUuids32()
90 it += Uuid::kNumBytes32; in GetUuids32()
101 while (std::distance(it, gap_data.data_.end()) >= (signed)Uuid::kNumBytes32) { in GetUuidsIncomplete32()
103 it += Uuid::kNumBytes32; in GetUuidsIncomplete32()
110 bool EirData::GetUuids128(std::vector<hci::Uuid>& uuids) const { in GetUuids128()
114 while (std::distance(it, gap_data.data_.end()) >= (long)Uuid::kNumBytes128) { in GetUuids128()
[all …]
/packages/modules/Bluetooth/system/bta/gatt/
Ddatabase.cc33 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()
[all …]
/packages/modules/Bluetooth/system/gd/rust/linux/utils/src/
Dadv_parser.rs5 use bt_topshim::bindings::root::bluetooth::Uuid;
57 pub fn extract_service_uuids(bytes: &[u8]) -> Vec<Uuid> { in extract_service_uuids() argument
60 .filter_map(|chunk| Uuid::try_from_little_endian(chunk).ok()) in extract_service_uuids()
64 .filter_map(|chunk| Uuid::try_from_little_endian(chunk).ok()), in extract_service_uuids()
69 .filter_map(|chunk| Uuid::try_from_little_endian(chunk).ok()), in extract_service_uuids()
86 Uuid::try_from_little_endian(slice.get(0..2)?) in extract_service_data()
91 Uuid::try_from_little_endian(slice.get(0..4)?) in extract_service_data()
96 Uuid::try_from_little_endian(slice.get(0..16)?) in extract_service_data()
188 Uuid::from([ in test_extract_service_uuids()
195 Uuid::from([ in test_extract_service_uuids()
[all …]
/packages/modules/Bluetooth/system/test/mock/
Dmock_bta_hh_api.cc30 const Uuid ANDROID_HEADTRACKER_SERVICE_UUID =
31 Uuid::FromString(ANDROID_HEADTRACKER_SERVICE_UUID_STRING);
32 const Uuid ANDROID_HEADTRACKER_VERSION_CHARAC_UUID =
33 Uuid::FromString(ANDROID_HEADTRACKER_VERSION_CHARAC_UUID_STRING);
34 const Uuid ANDROID_HEADTRACKER_CONTROL_CHARAC_UUID =
35 Uuid::FromString(ANDROID_HEADTRACKER_CONTROL_CHARAC_UUID_STRING);
36 const Uuid ANDROID_HEADTRACKER_REPORT_CHARAC_UUID =
37 Uuid::FromString(ANDROID_HEADTRACKER_REPORT_CHARAC_UUID_STRING);
/packages/modules/Bluetooth/system/rust/src/gatt/server/transactions/
Dfind_information_request.rs110 core::uuid::Uuid,
125 type_: Uuid::new(0x01020304), in test_long_uuids()
133 type_: Uuid::new(0x01020305), in test_long_uuids()
141 type_: Uuid::new(0x01020306), in test_long_uuids()
167 uuid: Uuid::new(0x01020304).into(), in test_long_uuids()
171 uuid: Uuid::new(0x01020305).into(), in test_long_uuids()
188 type_: Uuid::new(0x0102), in test_short_uuids()
196 type_: Uuid::new(0x0103), in test_short_uuids()
204 type_: Uuid::new(0x01020306), in test_short_uuids()
230 uuid: Uuid::new(0x0102).try_into().unwrap(), in test_short_uuids()
[all …]

1234567891011