Home
last modified time | relevance | path

Searched refs:ListEntry (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxList.cpp28 class ListEntry { class
30 ListEntry() = default;
31 ListEntry(ValueObjectSP entry_sp) : m_entry_sp(std::move(entry_sp)) {} in ListEntry() function in __anon1be7be510111::ListEntry
32 ListEntry(ValueObject *entry) in ListEntry() function in __anon1be7be510111::ListEntry
35 ListEntry next() { in next()
37 return ListEntry(); in next()
38 return ListEntry(m_entry_sp->GetChildMemberWithName("__next_")); in next()
41 ListEntry prev() { in prev()
43 return ListEntry(); in prev()
44 return ListEntry(m_entry_sp->GetChildMemberWithName("__prev_")); in prev()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/
H A DMachOWriter.cpp273 NListType ListEntry; in writeNListEntry() local
274 ListEntry.n_strx = Nstrx; in writeNListEntry()
275 ListEntry.n_type = SE.n_type; in writeNListEntry()
276 ListEntry.n_sect = SE.n_sect; in writeNListEntry()
277 ListEntry.n_desc = SE.n_desc; in writeNListEntry()
278 ListEntry.n_value = SE.n_value; in writeNListEntry()
281 MachO::swapStruct(ListEntry); in writeNListEntry()
282 memcpy(Out, reinterpret_cast<const char *>(&ListEntry), sizeof(NListType)); in writeNListEntry()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMachOEmitter.cpp476 NListType ListEntry; in writeNListEntry() local
477 ListEntry.n_strx = NLE.n_strx; in writeNListEntry()
478 ListEntry.n_type = NLE.n_type; in writeNListEntry()
479 ListEntry.n_sect = NLE.n_sect; in writeNListEntry()
480 ListEntry.n_desc = NLE.n_desc; in writeNListEntry()
481 ListEntry.n_value = NLE.n_value; in writeNListEntry()
484 MachO::swapStruct(ListEntry); in writeNListEntry()
485 OS.write(reinterpret_cast<const char *>(&ListEntry), sizeof(NListType)); in writeNListEntry()