Lines Matching refs:InstanceKey
20 InstanceKey::InstanceKey(const MdnsRecord& record) in InstanceKey() function in openscreen::discovery::InstanceKey
21 : InstanceKey(GetDomainName(record)) {} in InstanceKey()
23 InstanceKey::InstanceKey(const DomainName& domain) in InstanceKey() function in openscreen::discovery::InstanceKey
28 InstanceKey::InstanceKey(const DnsSdInstance& instance) in InstanceKey() function in openscreen::discovery::InstanceKey
29 : InstanceKey(instance.instance_id(), in InstanceKey()
33 InstanceKey::InstanceKey(absl::string_view instance, in InstanceKey() function in openscreen::discovery::InstanceKey
41 InstanceKey::InstanceKey(const InstanceKey& other) = default;
42 InstanceKey::InstanceKey(InstanceKey&& other) = default;
44 InstanceKey& InstanceKey::operator=(const InstanceKey& rhs) = default;
45 InstanceKey& InstanceKey::operator=(InstanceKey&& rhs) = default;
47 DomainName InstanceKey::GetName() const { in GetName()