Home
last modified time | relevance | path

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

/freebsd-12.1/usr.sbin/iostat/
H A Diostat.c795 u_int64_t total_bytes_read, total_transfers_read; in devstats() local
839 DSM_TOTAL_BYTES_READ, &total_bytes_read, in devstats()
911 total_bytes_read / 1024, in devstats()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DPlatform.cpp1701 uint64_t total_bytes_read = 0; in DownloadModuleSlice() local
1702 while (total_bytes_read < src_size) { in DownloadModuleSlice()
1704 src_size - total_bytes_read); in DownloadModuleSlice()
1714 total_bytes_read += n_read; in DownloadModuleSlice()
H A DProcess.cpp2221 size_t total_bytes_read = 0; in ReadStringFromMemory() local
2250 size_t aligned_start = total_bytes_read - total_bytes_read % type_width; in ReadStringFromMemory()
2252 i + type_width <= total_bytes_read + bytes_read; i += type_width) in ReadStringFromMemory()
2258 total_bytes_read += bytes_read; in ReadStringFromMemory()
2267 return total_bytes_read; in ReadStringFromMemory()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DValueObject.cpp957 size_t total_bytes_read = 0; in ReadPointedString() local
1016 total_bytes_read = bytes_read; in ReadPointedString()
1035 total_bytes_read += bytes_read; in ReadPointedString()
1074 return {total_bytes_read, was_capped}; in ReadPointedString()