Home
last modified time | relevance | path

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

/art/libartbase/base/
Dintrusive_forward_list.h34 IntrusiveForwardListHook() : next_hook(nullptr) { } in IntrusiveForwardListHook()
35 explicit IntrusiveForwardListHook(const IntrusiveForwardListHook* hook) : next_hook(hook) { } in IntrusiveForwardListHook()
39 : next_hook(nullptr) { } in IntrusiveForwardListHook()
44 mutable const IntrusiveForwardListHook* next_hook; member
79 hook_ = hook_->next_hook;
152 IntrusiveForwardList(IntrusiveForwardList&& src) : first_(src.first_.next_hook) { in IntrusiveForwardList()
153 src.first_.next_hook = nullptr; in IntrusiveForwardList()
166 iterator begin() { return iterator(first_.next_hook); } in begin()
167 const_iterator begin() const { return const_iterator(first_.next_hook); } in begin()
171 const_iterator cbegin() const { return const_iterator(first_.next_hook); } in cbegin()
[all …]