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.cpp277 size_t bytes_written_total = 0; in Write() local
278 while (bytes_written_total < len) { in Write()
279 auto bytes_to_write = std::min(len - bytes_written_total, kFbFfsNumBufs * kFbFfsBufSize); in Write()
282 return bytes_written_total == 0 ? -1 : bytes_written_total; in Write()
284 bytes_written_total += bytes_written_now; in Write()
290 return bytes_written_total; in Write()