Home
last modified time | relevance | path

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

/system/core/fastboot/device/
Dtcp_client.cpp60 size_t total_read = 0; in Read() local
81 size_t read_length = len - total_read; in Read()
86 socket_->ReceiveAll(reinterpret_cast<char*>(data) + total_read, read_length, 0); in Read()
92 total_read += bytes_read; in Read()
97 } while (downloading_ && total_read < len); in Read()
99 return total_read; in Read()
/system/unwinding/libunwindstack/
DMemory.cpp63 size_t total_read = 0; in ProcessVmRead() local
66 .iov_base = &reinterpret_cast<uint8_t*>(dst)[total_read], .iov_len = len, in ProcessVmRead()
78 return total_read; in ProcessVmRead()
90 return total_read; in ProcessVmRead()
99 return total_read; in ProcessVmRead()
101 total_read += rc; in ProcessVmRead()
103 return total_read; in ProcessVmRead()
/system/extras/iotop/
Diotop.cpp237 uint64_t total_read = 0; in main() local
243 total_read += statistics.read(); in main()
267 "TOTAL", BytesToKB(total_read) / delay_div, BytesToKB(total_write) / delay_div, in main()