Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/
H A DMachVMMemory.cpp215 nub_size_t total_bytes_read = 0; in Read() local
218 while (total_bytes_read < data_count) { in Read()
220 MaxBytesLeftInPage(task, curr_addr, data_count - total_bytes_read); in Read()
243 total_bytes_read += curr_bytes_read; in Read()
250 return total_bytes_read; in Read()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DProcessKDP.cpp587 size_t total_bytes_read = 0; in DoReadMemory() local
590 while (total_bytes_read < size) { in DoReadMemory()
591 size_t bytes_to_read_this_request = size - total_bytes_read; in DoReadMemory()
596 addr + total_bytes_read, data_buffer + total_bytes_read, in DoReadMemory()
598 total_bytes_read += bytes_read; in DoReadMemory()
600 return total_bytes_read; in DoReadMemory()
604 return total_bytes_read; in DoReadMemory()
/openbsd-src/gnu/llvm/lldb/source/Host/common/
H A DNativeProcessProtocol.cpp675 size_t &total_bytes_read) { in ReadCStringFromMemory() argument
683 total_bytes_read = 0; in ReadCStringFromMemory()
698 total_bytes_read = in ReadCStringFromMemory()
704 total_bytes_read += bytes_read; in ReadCStringFromMemory()
710 string_size = total_bytes_read - 1; in ReadCStringFromMemory()
715 total_bytes_read--; in ReadCStringFromMemory()
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DPlatform.cpp1638 uint64_t total_bytes_read = 0; in DownloadModuleSlice() local
1639 while (total_bytes_read < src_size) { in DownloadModuleSlice()
1641 src_size - total_bytes_read); in DownloadModuleSlice()
1651 total_bytes_read += n_read; in DownloadModuleSlice()
H A DTarget.cpp1998 size_t total_bytes_read = 0; in ReadStringFromMemory() local
2025 size_t aligned_start = total_bytes_read - total_bytes_read % type_width; in ReadStringFromMemory()
2027 i + type_width <= total_bytes_read + bytes_read; i += type_width) in ReadStringFromMemory()
2033 total_bytes_read += bytes_read; in ReadStringFromMemory()
2038 return total_bytes_read; in ReadStringFromMemory()
/openbsd-src/gnu/llvm/lldb/include/lldb/Host/common/
H A DNativeProcessProtocol.h131 size_t &total_bytes_read);
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DValueObject.cpp888 size_t total_bytes_read = 0; in ReadPointedString() local
947 total_bytes_read = bytes_read; in ReadPointedString()
966 total_bytes_read += bytes_read; in ReadPointedString()
1005 return {total_bytes_read, was_capped}; in ReadPointedString()