Home
last modified time | relevance | path

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

/external/openscreen/osp/impl/discovery/mdns/
Dmdns_responder_adapter_impl.cc175 int total_pos = 0; in ParseTxtResponse() local
176 while (total_pos < length) { in ParseTxtResponse()
177 uint8_t line_length = data[total_pos]; in ParseTxtResponse()
179 (total_pos + line_length >= length)) { in ParseTxtResponse()
182 lines.emplace_back(&data[total_pos + 1], in ParseTxtResponse()
183 &data[total_pos + line_length + 1]); in ParseTxtResponse()
184 total_pos += line_length + 1; in ParseTxtResponse()