Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.cpp383 const lldb::addr_t file_start = address_range->data.GetRangeBase(); in DoReadMemory() local
392 if (file_start == file_end) in DoReadMemory()
397 if (file_end > file_start + offset) in DoReadMemory()
398 bytes_left = file_end - (file_start + offset); in DoReadMemory()
406 core_objfile->CopyData(offset + file_start, bytes_to_read, buf); in DoReadMemory()