Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DSymtab.cpp37 m_file_addr_to_index_computed(false), m_name_indexes_computed(false), in Symtab()
72 m_file_addr_to_index_computed = false; in AddSymbol()
84 m_file_addr_to_index_computed = false; in SectionFileAddressesChanged()
156 if (!m_file_addr_to_index_computed) in Dump()
939 if (!m_file_addr_to_index_computed && !m_symbols.empty()) { in InitAddressIndexes()
940 m_file_addr_to_index_computed = true; in InitAddressIndexes()
1031 if (!m_file_addr_to_index_computed) in FindSymbolAtFileAddress()
1047 if (!m_file_addr_to_index_computed) in FindSymbolContainingFileAddress()
1064 if (!m_file_addr_to_index_computed) in ForEachSymbolContainingFileAddress()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DSymtab.h282 bool m_file_addr_to_index_computed : 1, m_name_indexes_computed : 1, variable