Searched refs:slide_amount (Results 1 – 4 of 4) sorted by relevance
/external/llvm-project/lldb/source/Core/ |
D | Section.cpp | 352 bool Section::Slide(addr_t slide_amount, bool slide_children) { in Slide() argument 354 if (slide_amount == 0) in Slide() 357 m_file_addr += slide_amount; in Slide() 360 m_children.Slide(slide_amount, slide_children); in Slide() 593 size_t SectionList::Slide(addr_t slide_amount, bool slide_children) { in Slide() argument 597 if ((*pos)->Slide(slide_amount, slide_children)) in Slide()
|
/external/llvm-project/lldb/include/lldb/Core/ |
D | Section.h | 88 size_t Slide(lldb::addr_t slide_amount, bool slide_children); 172 bool Slide(lldb::addr_t slide_amount, bool slide_children);
|
/external/llvm-project/lldb/source/Plugins/JITLoader/GDB/ |
D | JITLoaderGDB.cpp | 248 const lldb::addr_t slide_amount = lower - section_sp->GetFileAddress(); in updateSectionLoadAddress() local 249 section_sp->Slide(slide_amount, false); in updateSectionLoadAddress() 250 section_sp->GetChildren().Slide(-slide_amount, false); in updateSectionLoadAddress()
|
/external/llvm-project/lldb/source/Plugins/ObjectFile/Mach-O/ |
D | ObjectFileMachO.cpp | 1719 const lldb::addr_t slide_amount = in ProcessSegmentCommand() local 1721 segment->Slide(slide_amount, false); in ProcessSegmentCommand() 1722 segment->GetChildren().Slide(-slide_amount, false); in ProcessSegmentCommand()
|