Searched defs:section_sp (Results 1 - 9 of 9) sorted by relevance

/external/lldb/source/Target/
H A DSectionLoadList.cpp131 SectionLoadList::SetSectionUnloaded (const lldb::SectionSP &section_sp) argument
135 if (section_sp)
141 const FileSpec &module_file_spec (section_sp->GetModule()->GetFileSpec());
144 section_sp.get(),
146 section_sp->GetName().AsCString());
151 sect_to_addr_collection::iterator sta_pos = m_sect_to_addr.find(section_sp.get());
167 SectionLoadList::SetSectionUnloaded (const lldb::SectionSP &section_sp, addr_t load_addr) argument
173 const FileSpec &module_file_spec (section_sp->GetModule()->GetFileSpec());
176 section_sp.get(),
178 section_sp
[all...]
/external/lldb/include/lldb/Core/
H A DAddress.h136 Address (const lldb::SectionSP &section_sp, lldb::addr_t offset) : argument
137 m_section_wp (), // Don't init with section_sp in case section_sp is invalid (the weak_ptr will throw)
140 if (section_sp)
141 m_section_wp = section_sp;
495 SetSection (const lldb::SectionSP &section_sp) argument
497 m_section_wp = section_sp;
/external/lldb/source/API/
H A DSBSection.cpp38 SBSection::SBSection (const lldb::SectionSP &section_sp) : argument
39 m_opaque_wp () // Don't init with section_sp otherwise this will throw if section_sp doesn't contain a valid Section *
41 if (section_sp)
42 m_opaque_wp = section_sp;
59 SectionSP section_sp (GetSP());
60 return section_sp && section_sp->GetModule().get() != NULL;
66 SectionSP section_sp (GetSP());
67 if (section_sp)
129 SetSP(const lldb::SectionSP &section_sp) argument
[all...]
/external/lldb/source/Symbol/
H A DLineEntry.cpp32 const lldb::SectionSP &section_sp,
44 range(section_sp, section_offset, byte_size),
30 LineEntry( const lldb::SectionSP &section_sp, lldb::addr_t section_offset, lldb::addr_t byte_size, const FileSpec &_file, uint32_t _line, uint16_t _column, bool _is_start_of_statement, bool _is_start_of_basic_block, bool _is_prologue_end, bool _is_epilogue_begin, bool _is_terminal_entry ) argument
H A DDWARFCallFrameInfo.cpp31 DWARFCallFrameInfo::DWARFCallFrameInfo(ObjectFile& objfile, SectionSP& section_sp, lldb::RegisterKind reg_kind, bool is_eh_frame) : argument
33 m_section_sp (section_sp),
H A DSymbol.cpp55 const lldb::SectionSP &section_sp,
74 m_addr_range (section_sp, offset, size),
45 Symbol( uint32_t symID, const char *name, bool name_is_mangled, SymbolType type, bool external, bool is_debug, bool is_trampoline, bool is_artificial, const lldb::SectionSP &section_sp, addr_t offset, addr_t size, bool size_is_valid, uint32_t flags ) argument
/external/lldb/source/Core/
H A DSection.cpp313 SectionList::AddSection (const lldb::SectionSP& section_sp) argument
315 assert (section_sp.get());
317 m_sections.push_back(section_sp);
H A DModule.cpp460 SectionSP section_sp (so_addr.GetSection());
463 if (section_sp && section_sp->GetModule().get() == this)
1270 lldb::SectionSP section_sp (section_list->GetSectionAtIndex (idx - 1));
1271 if (section_sp->GetObjectFile() == obj_file)
1306 SectionSP section_sp = sections->GetSectionAtIndex(sect_idx); local
1307 if (section_sp->GetLoadBaseAddress(target) != LLDB_INVALID_ADDRESS)
1417 SectionSP section_sp (section_list->GetSectionAtIndex (sect_idx));
1419 if (section_sp && !section_sp
[all...]
/external/lldb/source/Plugins/ObjectFile/Mach-O/
H A DObjectFileMachO.cpp794 SectionSP section_sp (symbol->GetAddress().GetSection());
795 if (section_sp)
797 const SectionType section_type = section_sp->GetType();
1317 SectionSP section_sp(new Section (segment_sp,
1334 section_sp->SetIsEncrypted (segment_is_encrypted || section_is_encrypted);
1335 segment_sp->GetChildren().AddSection(section_sp);
1410 if (!m_section_infos[n_sect].section_sp)
1412 SectionSP section_sp (m_section_list->FindSectionByID (n_sect));
1413 m_section_infos[n_sect].section_sp = section_sp;
1451 SectionSP section_sp; member in struct:MachSymtabSectionInfo::SectionInfo
[all...]

Completed in 1152 milliseconds