Searched refs:total_pos (Results 1 – 1 of 1) sorted by relevance
175 int total_pos = 0; in ParseTxtResponse() local176 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()