Home
last modified time | relevance | path

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

/aosp12/frameworks/compile/mclinker/include/mcld/Target/
H A DKeyEntryMap.h27 struct EntryPair { struct
28 EntryPair(EntryType* pEntry1, EntryType* pEntry2) in EntryPair() argument
39 EntryPair* pair_ptr; argument
48 typedef std::list<EntryPair> PairListType;
179 m_Pairs.push_back(EntryPair(&pEntry1, &pEntry2)); in record()
/aosp12/art/runtime/gc/
H A Dallocation_record.h213 using EntryPair = std::pair<GcRoot<mirror::Object>, AllocRecord>; variable
214 typedef std::list<EntryPair> EntryList;
235 entries_.push_back(EntryPair(GcRoot<mirror::Object>(obj), std::move(record))); in Put()