Home | History | Annotate | Download | only in page

Lines Matching refs:lineLength

261         int lineLength = -1;
263 for (unsigned int i = bufPos; lineLength < 0 && i < bufSize; i++) {
272 lineLength = i - bufPos;
277 if (lineLength < 0)
280 parseEventStreamLine(bufPos, fieldLength, lineLength);
281 bufPos += lineLength + 1;
290 void EventSource::parseEventStreamLine(unsigned int bufPos, int fieldLength, int lineLength)
292 if (!lineLength) {
302 String field(&m_receiveBuf[bufPos], noValue ? lineLength : fieldLength);
305 step = lineLength;
311 int valueLength = lineLength - step;