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

/freebsd-12-stable/contrib/llvm-project/lldb/source/Host/common/
H A DNativeProcessProtocol.cpp670 size_t &total_bytes_read) {
678 total_bytes_read = 0;
693 total_bytes_read =
699 total_bytes_read += bytes_read;
705 string_size = total_bytes_read - 1;
710 total_bytes_read--;
668 ReadCStringFromMemory(lldb::addr_t addr, char *buffer, size_t max_size, size_t &total_bytes_read) argument
/freebsd-12-stable/usr.sbin/iostat/
H A Diostat.c795 u_int64_t total_bytes_read, total_transfers_read; local
839 DSM_TOTAL_BYTES_READ, &total_bytes_read,
911 total_bytes_read / 1024,
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeProcessProtocol.h103 /// \param[out] total_bytes_read
110 size_t &total_bytes_read);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp1649 uint64_t total_bytes_read = 0;
1650 while (total_bytes_read < src_size) {
1652 src_size - total_bytes_read);
1662 total_bytes_read += n_read;
H A DProcess.cpp1978 size_t total_bytes_read = 0;
2007 size_t aligned_start = total_bytes_read - total_bytes_read % type_width;
2009 i + type_width <= total_bytes_read + bytes_read; i += type_width)
2015 total_bytes_read += bytes_read;
2024 return total_bytes_read;
/freebsd-12-stable/contrib/llvm-project/lldb/source/Core/
H A DValueObject.cpp985 size_t total_bytes_read = 0; local
1044 total_bytes_read = bytes_read;
1063 total_bytes_read += bytes_read;
1102 return {total_bytes_read, was_capped};

Completed in 188 milliseconds