Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/
H A DNativeProcessProtocol.cpp644 size_t &total_bytes_read) { in ReadCStringFromMemory() argument
652 total_bytes_read = 0; in ReadCStringFromMemory()
667 total_bytes_read = in ReadCStringFromMemory()
673 total_bytes_read += bytes_read; in ReadCStringFromMemory()
679 string_size = total_bytes_read - 1; in ReadCStringFromMemory()
684 total_bytes_read--; in ReadCStringFromMemory()
/freebsd-13.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-13.1/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp1677 uint64_t total_bytes_read = 0; in DownloadModuleSlice() local
1678 while (total_bytes_read < src_size) { in DownloadModuleSlice()
1680 src_size - total_bytes_read); in DownloadModuleSlice()
1690 total_bytes_read += n_read; in DownloadModuleSlice()
H A DProcess.cpp1958 size_t total_bytes_read = 0; in ReadStringFromMemory() local
1987 size_t aligned_start = total_bytes_read - total_bytes_read % type_width; in ReadStringFromMemory()
1989 i + type_width <= total_bytes_read + bytes_read; i += type_width) in ReadStringFromMemory()
1995 total_bytes_read += bytes_read; in ReadStringFromMemory()
2004 return total_bytes_read; in ReadStringFromMemory()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeProcessProtocol.h119 size_t &total_bytes_read);
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DValueObject.cpp877 size_t total_bytes_read = 0; in ReadPointedString() local
936 total_bytes_read = bytes_read; in ReadPointedString()
955 total_bytes_read += bytes_read; in ReadPointedString()
994 return {total_bytes_read, was_capped}; in ReadPointedString()