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