Home
last modified time | relevance | path

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

/src/contrib/llvm-project/lldb/source/Core/
H A DSection.cpp342 bool Section::Slide(addr_t slide_amount, bool slide_children) { in Slide() argument
344 if (slide_amount == 0) in Slide()
347 m_file_addr += slide_amount; in Slide()
350 m_children.Slide(slide_amount, slide_children); in Slide()
659 size_t SectionList::Slide(addr_t slide_amount, bool slide_children) { in Slide() argument
663 if ((*pos)->Slide(slide_amount, slide_children)) in Slide()
/src/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/
H A DJITLoaderGDB.cpp247 const lldb::addr_t slide_amount = lower - section_sp->GetFileAddress(); in updateSectionLoadAddress() local
248 section_sp->Slide(slide_amount, false); in updateSectionLoadAddress()
249 section_sp->GetChildren().Slide(-slide_amount, false); in updateSectionLoadAddress()
/src/contrib/llvm-project/lldb/include/lldb/Core/
H A DSection.h89 size_t Slide(lldb::addr_t slide_amount, bool slide_children);
186 bool Slide(lldb::addr_t slide_amount, bool slide_children);