Home
last modified time | relevance | path

Searched refs:bytes_read_total (Results 1 – 1 of 1) sorted by relevance

/system/core/fastboot/device/
Dusb_client.cpp260 size_t bytes_read_total = 0; in Read() local
261 while (bytes_read_total < len) { in Read()
262 auto bytes_to_read = std::min(len - bytes_read_total, kFbFfsNumBufs * kFbFfsBufSize); in Read()
267 return bytes_read_total == 0 ? -1 : bytes_read_total; in Read()
269 bytes_read_total += bytes_read_now; in Read()
275 return bytes_read_total; in Read()