Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Core/
H A DSection.cpp338 bool Section::Slide(addr_t slide_amount, bool slide_children) { in Slide() argument
340 if (slide_amount == 0) in Slide()
343 m_file_addr += slide_amount; in Slide()
346 m_children.Slide(slide_amount, slide_children); in Slide()
655 size_t SectionList::Slide(addr_t slide_amount, bool slide_children) { in Slide() argument
659 if ((*pos)->Slide(slide_amount, slide_children)) in Slide()
/openbsd-src/gnu/llvm/lldb/source/Plugins/JITLoader/GDB/
H A DJITLoaderGDB.cpp245 const lldb::addr_t slide_amount = lower - section_sp->GetFileAddress(); in updateSectionLoadAddress() local
246 section_sp->Slide(slide_amount, false); in updateSectionLoadAddress()
247 section_sp->GetChildren().Slide(-slide_amount, false); in updateSectionLoadAddress()
/openbsd-src/gnu/llvm/lldb/include/lldb/Core/
H A DSection.h88 size_t Slide(lldb::addr_t slide_amount, bool slide_children);
178 bool Slide(lldb::addr_t slide_amount, bool slide_children);
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/Mach-O/
H A DObjectFileMachO.cpp1775 const lldb::addr_t slide_amount = in ProcessSegmentCommand() local
1777 segment->Slide(slide_amount, false); in ProcessSegmentCommand()
1778 segment->GetChildren().Slide(-slide_amount, false); in ProcessSegmentCommand()