Home
last modified time | relevance | path

Searched refs:hash_data (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DAppleDWARFIndex.cpp71 DWARFMappedHash::DIEInfoArray hash_data; in GetGlobalVariables() local
72 m_apple_names_up->AppendAllDIEsThatMatchingRegex(regex, hash_data); in GetGlobalVariables()
74 DWARFMappedHash::ExtractDIEArray(hash_data, in GetGlobalVariables()
85 DWARFMappedHash::DIEInfoArray hash_data; in GetGlobalVariables() local
88 hash_data); in GetGlobalVariables()
89 DWARFMappedHash::ExtractDIEArray(hash_data, DIERefCallback(callback)); in GetGlobalVariables()
198 DWARFMappedHash::DIEInfoArray hash_data; in GetFunctions() local
199 m_apple_names_up->AppendAllDIEsThatMatchingRegex(regex, hash_data); in GetFunctions()
200 DWARFMappedHash::ExtractDIEArray(hash_data, in GetFunctions()
H A DHashedNameToDIE.cpp267 DIEInfo &hash_data) const { in Read()
280 hash_data.die_offset = in Read()
287 hash_data.tag = (dw_tag_t)form_value.Unsigned(); in Read()
291 hash_data.type_flags = (uint32_t)form_value.Unsigned(); in Read()
295 hash_data.qualified_name_hash = form_value.Unsigned(); in Read()
303 return hash_data.die_offset != DW_INVALID_OFFSET; in Read()
319 HashData &hash_data) const { in ReadHashData()
325 hash_data.resize(count); in ReadHashData()
327 if (!m_header.Read(m_data, &offset, hash_data[i])) in ReadHashData()
331 hash_data.clear(); in ReadHashData()
H A DHashedNameToDIE.h117 lldb::offset_t *offset_ptr, DIEInfo &hash_data) const;
133 HashData &hash_data) const override;
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DMappedHash.h261 HashData &hash_data) const = 0;
284 std::function<bool(const HashData &hash_data)> const &callback) const { in ForEach()
289 HashData hash_data; in ForEach() local
290 if (ReadHashData(hash_data_offset, hash_data)) { in ForEach()
292 if (callback(hash_data) == false) in ForEach()