Searched refs:soFar (Results 1 – 4 of 4) sorted by relevance
48 const nsecs_t soFar = mLaps[i].soFar; in ~StopWatch() local50 ALOGD(" [%d: %" PRId64 ", %" PRId64, i, ns2us(soFar), ns2us(thisLap)); in ~StopWatch()66 mLaps[n].soFar = elapsed; in lap()67 mLaps[n].thisLap = n ? (elapsed - mLaps[n-1].soFar) : elapsed; in lap()
269 long soFar = 0; in verifyPackage() local273 while (soFar < toRead) { in verifyPackage()277 if (soFar + size > toRead) { in verifyPackage()278 size = (int)(toRead - soFar); in verifyPackage()282 soFar += read; in verifyPackage()286 int p = (int)(soFar * 100 / toRead); in verifyPackage()
49 nsecs_t soFar; member
3912 int soFar = 0; in readExactly() local3913 while (soFar < size) { in readExactly()3914 int nRead = in.read(buffer, offset + soFar, size - soFar); in readExactly()3916 … if (MORE_DEBUG) Slog.w(TAG, "- wanted exactly " + size + " but got only " + soFar); in readExactly()3919 soFar += nRead; in readExactly()3921 return soFar; in readExactly()