Searched refs:IntrusiveForwardListHook (Results 1 – 2 of 2) sorted by relevance
33 struct IntrusiveForwardListHook { struct34 IntrusiveForwardListHook() : next_hook(nullptr) { } in IntrusiveForwardListHook() argument35 explicit IntrusiveForwardListHook(const IntrusiveForwardListHook* hook) : next_hook(hook) { } in IntrusiveForwardListHook() function38 IntrusiveForwardListHook(const IntrusiveForwardListHook& other ATTRIBUTE_UNUSED) in IntrusiveForwardListHook() function40 IntrusiveForwardListHook& operator=(const IntrusiveForwardListHook& src ATTRIBUTE_UNUSED) {44 mutable const IntrusiveForwardListHook* next_hook; argument48 struct IntrusiveForwardListNode : public IntrusiveForwardListHook {51 template <typename T, IntrusiveForwardListHook T::* NextPtr = &T::hook>98 explicit IntrusiveForwardListIterator(const IntrusiveForwardListHook* hook) : hook_(hook) { } in IntrusiveForwardListIterator()100 const IntrusiveForwardListHook* hook_;[all …]
47 IntrusiveForwardListHook hook;