Home
last modified time | relevance | path

Searched refs:index_of_eq (Results 1 – 1 of 1) sorted by relevance

/external/openscreen/discovery/dnssd/impl/
Dconversion_layer.cc121 size_t index_of_eq = text.find_first_of('='); in CreateFromDnsTxt() local
122 if (index_of_eq != std::string::npos) { in CreateFromDnsTxt()
123 if (index_of_eq == 0) { in CreateFromDnsTxt()
126 std::string key = text.substr(0, index_of_eq); in CreateFromDnsTxt()
127 std::string value = text.substr(index_of_eq + 1); in CreateFromDnsTxt()