Home
last modified time | relevance | path

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

/openbsd-src/gnu/usr.bin/texinfo/makeinfo/
H A Dfiles.c199 int n, bytes_to_read; in find_and_load()
225 bytes_to_read = file_size; in find_and_load()
226 while ((n = read (file, result + count, bytes_to_read)) > 0) in find_and_load()
229 bytes_to_read -= n; in find_and_load()
197 int n, bytes_to_read; find_and_load() local
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.cpp385 size_t bytes_to_read = size; // Number of bytes to read from the core file in DoReadMemory() local
400 if (bytes_to_read > bytes_left) in DoReadMemory()
401 bytes_to_read = bytes_left; in DoReadMemory()
404 if (bytes_to_read) in DoReadMemory()
406 core_objfile->CopyData(offset + file_start, bytes_to_read, buf); in DoReadMemory()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/mach-core/
H A DProcessMachCore.cpp595 const size_t bytes_to_read = in DoReadMemory() local
598 core_memory_entry->data.GetRangeBase() + offset, bytes_to_read, in DoReadMemory()
/openbsd-src/gnu/llvm/lldb/source/Host/common/
H A DNativeProcessProtocol.cpp689 addr_t bytes_to_read = std::min<addr_t>(bytes_left, cache_line_bytes_left); in ReadCStringFromMemory() local
691 bytes_to_read, bytes_read); in ReadCStringFromMemory()
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DTarget.cpp1948 addr_t bytes_to_read = in ReadCStringFromMemory() local
1950 size_t bytes_read = ReadMemory(address, curr_dst, bytes_to_read, error, in ReadCStringFromMemory()
1962 if (len < bytes_to_read) in ReadCStringFromMemory()
2015 addr_t bytes_to_read = in ReadStringFromMemory() local
2018 ReadMemory(address, curr_dst, bytes_to_read, error, force_live_memory); in ReadStringFromMemory()
H A DProcess.cpp2009 addr_t bytes_to_read = in ReadCStringFromMemory() local
2011 size_t bytes_read = ReadMemory(curr_addr, curr_dst, bytes_to_read, error); in ReadCStringFromMemory()
2022 if (len < bytes_to_read) in ReadCStringFromMemory()
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/Mach-O/
H A DObjectFileMachO.cpp6852 const size_t bytes_to_read =
6859 addr, bytes, bytes_to_read, memory_read_error);
6861 if (bytes_read == bytes_to_read) {
6869 memset(bytes, 0, bytes_to_read);
6870 size_t bytes_written = bytes_to_read;
6872 bytes_left -= bytes_to_read;
6873 addr += bytes_to_read;