HomeSort by relevance Sort by last modified time
    Searched full:filled_to (Results 1 - 1 of 1) sorted by null

  /art/runtime/
utils.cc 165 size_t filled_to = 0; local
167 DCHECK_LT(filled_to, kBufSize);
168 int64_t n = TEMP_FAILURE_RETRY(read(file.Fd(), &buf[filled_to], kBufSize - filled_to));
171 if (filled_to > 0) {
172 buf[filled_to] = 0;
178 size_t i = filled_to;
180 for (; i < filled_to + n; ++i) {
186 if (i + 1 < filled_to + n) {
187 memmove(&buf[0], &buf[i + 1], filled_to + n - i - 1)
    [all...]

Completed in 59 milliseconds