Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.cpp37 : m_obj(&obj), m_section_type(toString(section_type)), in LineIterator()
47 : m_obj(&obj), in LineIterator()
48 m_next_section_idx(m_obj->GetSectionList()->GetNumSections(0)), in LineIterator()
53 assert(lhs.m_obj == rhs.m_obj); in operator !=()
72 ObjectFile *m_obj; member in SymbolFileBreakpad::LineIterator
92 : m_obj(&obj), m_section_type(toString(section_type)), in LineIterator()
108 const SectionList &list = *m_obj->GetSectionList(); in operator ++()
122 m_obj->ReadSectionData(&sect, data); in operator ++()
/llvm-project-15.0.7/compiler-rt/lib/asan/scripts/
H A Dasan_symbolize.py889 m_obj = matcher.match(line)
890 if not m_obj:
892 arch = m_obj.group('arch')
893 start_addr = int(m_obj.group('start_addr'), base=16)
894 end_addr = int(m_obj.group('end_addr'), base=16)
895 module_path = m_obj.group('path')
896 uuid = m_obj.group('uuid')