Home
last modified time | relevance | path

Searched refs:m_sect_to_addr (Results 1 – 2 of 2) sorted by relevance

/external/lldb/source/Target/
DSectionLoadList.cpp40 m_sect_to_addr.clear(); in Clear()
51 sect_to_addr_collection::const_iterator pos = m_sect_to_addr.find (section.get()); in GetSectionLoadAddress()
53 if (pos != m_sect_to_addr.end()) in GetSectionLoadAddress()
80 sect_to_addr_collection::iterator sta_pos = m_sect_to_addr.find(section.get()); in SetSectionLoadAddress()
81 if (sta_pos != m_sect_to_addr.end()) in SetSectionLoadAddress()
89 m_sect_to_addr[section.get()] = load_addr; in SetSectionLoadAddress()
151 sect_to_addr_collection::iterator sta_pos = m_sect_to_addr.find(section_sp.get()); in SetSectionUnloaded()
152 if (sta_pos != m_sect_to_addr.end()) in SetSectionUnloaded()
156 m_sect_to_addr.erase (sta_pos); in SetSectionUnloaded()
183 sect_to_addr_collection::iterator sta_pos = m_sect_to_addr.find(section_sp.get()); in SetSectionUnloaded()
[all …]
/external/lldb/include/lldb/Target/
DSectionLoadList.h33 m_sect_to_addr (), in SectionLoadList()
80 sect_to_addr_collection m_sect_to_addr; variable