Searched refs:slide_amount (Results 1 – 4 of 4) sorted by relevance
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/JITLoader/GDB/ |
| H A D | JITLoaderGDB.cpp | 245 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 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);
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/Mach-O/ |
| H A D | ObjectFileMachO.cpp | 1775 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()
|