Searched refs:slide_amount (Results 1 – 4 of 4) sorted by relevance
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | Section.cpp | 338 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()
|
| /llvm-project-15.0.7/lldb/source/Plugins/JITLoader/GDB/ |
| H A D | JITLoaderGDB.cpp | 247 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()
|
| /llvm-project-15.0.7/lldb/include/lldb/Core/ |
| H A D | Section.h | 88 size_t Slide(lldb::addr_t slide_amount, bool slide_children); 178 bool Slide(lldb::addr_t slide_amount, bool slide_children);
|
| /llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/Mach-O/ |
| H A D | ObjectFileMachO.cpp | 1759 const lldb::addr_t slide_amount = in ProcessSegmentCommand() local 1761 segment->Slide(slide_amount, false); in ProcessSegmentCommand() 1762 segment->GetChildren().Slide(-slide_amount, false); in ProcessSegmentCommand()
|