Searched refs:IsValidTxtValue (Results 1 – 3 of 3) sorted by relevance
/external/openscreen/discovery/dnssd/public/ |
D | dns_sd_txt_record.cc | 14 bool DnsSdTxtRecord::IsValidTxtValue(const std::string& key, in IsValidTxtValue() function in openscreen::discovery::DnsSdTxtRecord 25 bool DnsSdTxtRecord::IsValidTxtValue(const std::string& key, uint8_t value) { in IsValidTxtValue() function in openscreen::discovery::DnsSdTxtRecord 26 return IsValidTxtValue(key, std::vector<uint8_t>{value}); in IsValidTxtValue() 30 bool DnsSdTxtRecord::IsValidTxtValue(const std::string& key, in IsValidTxtValue() function in openscreen::discovery::DnsSdTxtRecord 32 return IsValidTxtValue(key, std::vector<uint8_t>(value.begin(), value.end())); in IsValidTxtValue() 37 if (!IsValidTxtValue(key, value)) { in SetValue()
|
D | dns_sd_txt_record.h | 24 static bool IsValidTxtValue(const std::string& key, 26 static bool IsValidTxtValue(const std::string& key, const std::string& value); 27 static bool IsValidTxtValue(const std::string& key, uint8_t value);
|
/external/openscreen/cast/common/public/ |
D | service_info.cc | 86 discovery::DnsSdTxtRecord::IsValidTxtValue(kUniqueIdKey, unique_id) && in IsValid() 88 discovery::DnsSdTxtRecord::IsValidTxtValue( in IsValid() 90 discovery::DnsSdTxtRecord::IsValidTxtValue( in IsValid() 93 discovery::DnsSdTxtRecord::IsValidTxtValue( in IsValid() 95 discovery::DnsSdTxtRecord::IsValidTxtValue(kModelNameKey, model_name) && in IsValid() 97 discovery::DnsSdTxtRecord::IsValidTxtValue(kFriendlyNameKey, in IsValid()
|