Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DAuxVector.cpp29 m_auxv_entries[type] = value; in ParseAuxv()
35 auto it = m_auxv_entries.find(static_cast<uint64_t>(entry_type)); in GetAuxValue()
36 if (it != m_auxv_entries.end()) in GetAuxValue()
46 for (auto entry : m_auxv_entries) { in DumpToLog()
H A DAuxVector.h81 std::unordered_map<uint64_t, uint64_t> m_auxv_entries; variable