Home
last modified time | relevance | path

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

/aosp12/art/libartbase/base/
H A Dintrusive_forward_list.h33 struct IntrusiveForwardListHook { struct
34 IntrusiveForwardListHook() : next_hook(nullptr) { } in IntrusiveForwardListHook() function
35 explicit IntrusiveForwardListHook(const IntrusiveForwardListHook* hook) : next_hook(hook) { } in IntrusiveForwardListHook() function
38 IntrusiveForwardListHook(const IntrusiveForwardListHook& other ATTRIBUTE_UNUSED) in IntrusiveForwardListHook() argument
40 IntrusiveForwardListHook& operator=(const IntrusiveForwardListHook& src ATTRIBUTE_UNUSED) {
44 mutable const IntrusiveForwardListHook* next_hook; argument
100 const IntrusiveForwardListHook* hook_;
393 static IntrusiveForwardListHook* ModifiableHook(const IntrusiveForwardListHook* hook) { in ModifiableHook()
394 return const_cast<IntrusiveForwardListHook*>(hook); in ModifiableHook()
397 IntrusiveForwardListHook first_;
[all …]
H A Dintrusive_forward_list_test.cc47 IntrusiveForwardListHook hook;