Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DNativeProcessProtocol.cpp679 size_t &total_bytes_read) { in ReadCStringFromMemory() argument
687 total_bytes_read = 0; in ReadCStringFromMemory()
702 total_bytes_read = in ReadCStringFromMemory()
708 total_bytes_read += bytes_read; in ReadCStringFromMemory()
714 string_size = total_bytes_read - 1; in ReadCStringFromMemory()
719 total_bytes_read--; in ReadCStringFromMemory()
/freebsd/usr.sbin/iostat/
H A Diostat.c791 u_int64_t total_bytes_read, total_transfers_read; in devstats() local
835 DSM_TOTAL_BYTES_READ, &total_bytes_read, in devstats()
907 total_bytes_read / 1024, in devstats()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeProcessProtocol.h131 size_t &total_bytes_read);
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp1747 uint64_t total_bytes_read = 0; in DownloadModuleSlice() local
1748 while (total_bytes_read < src_size) { in DownloadModuleSlice()
1750 src_size - total_bytes_read); in DownloadModuleSlice()
1760 total_bytes_read += n_read; in DownloadModuleSlice()
H A DTarget.cpp2045 size_t total_bytes_read = 0; in ReadStringFromMemory() local
2072 size_t aligned_start = total_bytes_read - total_bytes_read % type_width; in ReadStringFromMemory()
2074 i + type_width <= total_bytes_read + bytes_read; i += type_width) in ReadStringFromMemory()
2080 total_bytes_read += bytes_read; in ReadStringFromMemory()
2085 return total_bytes_read; in ReadStringFromMemory()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValueObject.cpp872 size_t total_bytes_read = 0; in ReadPointedString() local
931 total_bytes_read = bytes_read; in ReadPointedString()
950 total_bytes_read += bytes_read; in ReadPointedString()
989 return {total_bytes_read, was_capped}; in ReadPointedString()