HomeSort by relevance Sort by last modified time
    Searched refs:die_offsets (Results 1 - 9 of 9) sorted by null

  /external/lldb/source/Plugins/SymbolFile/DWARF/
HashedNameToDIE.h 68 DIEArray &die_offsets)
73 die_offsets.push_back (die_info_array[i].offset);
80 DIEArray &die_offsets)
84 ExtractDIEArray (die_info_array, die_offsets);
99 die_offsets.push_back (die_info_array[i].offset);
108 DIEArray &die_offsets)
112 ExtractDIEArray (die_info_array, die_offsets);
129 die_offsets.push_back (die_info_array[i].offset);
160 DIEArray &die_offsets)
174 die_offsets.clear();
    [all...]
DWARFDebugPubnames.h 29 bool Find(const lldb_private::RegularExpression& regex, std::vector<dw_offset_t>& die_offsets) const;
DWARFDebugPubnames.cpp 267 DWARFDebugPubnames::Find(const char* name, bool ignore_case, std::vector<dw_offset_t>& die_offsets) const
272 die_offsets.clear();
276 (*pos).Find(name, ignore_case, die_offsets);
279 return !die_offsets.empty();
283 DWARFDebugPubnames::Find(const RegularExpression& regex, std::vector<dw_offset_t>& die_offsets) const
288 die_offsets.clear();
292 (*pos).Find(regex, die_offsets);
295 return !die_offsets.empty();
DWARFDebugInfo.h 63 bool Find(const char* name, bool ignore_case, std::vector<dw_offset_t>& die_offsets) const;
64 bool Find(lldb_private::RegularExpression& re, std::vector<dw_offset_t>& die_offsets) const;
DWARFDebugInfo.cpp 724 vector<dw_offset_t>& die_offsets; member in struct:FindCallbackStringInfoTag
748 info->die_offsets.push_back(die->GetOffset());
753 info->die_offsets.push_back(die->GetOffset());
771 DWARFDebugInfo::Find(const char* name, bool ignore_case, vector<dw_offset_t>& die_offsets) const
773 die_offsets.clear();
776 FindCallbackStringInfo info = { name, ignore_case, NULL, die_offsets };
779 return !die_offsets.empty();
791 DWARFDebugInfo::Find(RegularExpression& re, vector<dw_offset_t>& die_offsets) const
793 die_offsets.clear();
794 FindCallbackStringInfo info = { NULL, false, &re, die_offsets };
    [all...]
DWARFDebugPubnamesSet.h 77 void Find(const lldb_private::RegularExpression& regex, std::vector<dw_offset_t>& die_offsets) const;
SymbolFileDWARF.cpp 3113 DIEArray die_offsets; local
3232 DIEArray die_offsets; local
3360 DIEArray die_offsets; local
3373 DIEArray die_offsets; local
3386 DIEArray die_offsets; local
3580 DIEArray die_offsets; local
3769 DIEArray die_offsets; local
4041 DIEArray die_offsets; local
5008 DIEArray die_offsets; local
5182 DIEArray die_offsets; local
7158 DIEArray die_offsets; local
7805 DIEArray die_offsets; local
7820 m_type_index.Find (ConstString(name), die_offsets); local
    [all...]
SymbolFileDWARF.h 442 void ParseFunctions (const DIEArray &die_offsets,
447 uint32_t FindTypes(std::vector<dw_offset_t> die_offsets, uint32_t max_matches, lldb_private::TypeList& types);
DWARFDebugInfoEntry.cpp 760 std::vector<dw_offset_t> die_offsets;
833 die_offsets.push_back(form_value.Reference(cu));
837 die_offsets.push_back(form_value.Reference(cu));
    [all...]

Completed in 773 milliseconds