Home | History | Annotate | Download | only in os

Lines Matching refs:endIndex

1212         int endIndex;
1218 startIndex = endIndex = i + 1;
1224 while (endIndex < len) {
1225 for (endIndex=startIndex;
1226 endIndex < len && wlBuffer[endIndex] != '\n' && wlBuffer[endIndex] != '\0';
1227 endIndex++);
1228 endIndex++; // endIndex is an exclusive upper bound.
1230 // write to wlBuffer[endIndex]
1231 if (endIndex >= (len - 1) ) {
1240 for (int j = startIndex; j < endIndex; j++) {
1243 boolean parsed = Process.parseProcLine(wlBuffer, startIndex, endIndex,
1277 startIndex = endIndex;