Searched refs:filled_to (Results 1 - 1 of 1) sorted by relevance

/art/runtime/
H A Dutils.cc161 size_t filled_to = 0; local
163 DCHECK_LT(filled_to, kBufSize);
164 int64_t n = TEMP_FAILURE_RETRY(read(file.Fd(), &buf[filled_to], kBufSize - filled_to));
167 if (filled_to > 0) {
168 buf[filled_to] = 0;
174 size_t i = filled_to;
176 for (; i < filled_to + n; ++i) {
182 if (i + 1 < filled_to + n) {
183 memmove(&buf[0], &buf[i + 1], filled_to
[all...]

Completed in 72 milliseconds