Home
last modified time | relevance | path

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

/system/core/fastboot/device/
Dusb_client.cpp283 size_t bytes_written_total = 0; in Write() local
284 while (bytes_written_total < len) { in Write()
285 auto bytes_to_write = std::min(len - bytes_written_total, kFbFfsNumBufs * kFbFfsBufSize); in Write()
288 return bytes_written_total == 0 ? -1 : bytes_written_total; in Write()
290 bytes_written_total += bytes_written_now; in Write()
296 return bytes_written_total; in Write()