Home
last modified time | relevance | path

Searched defs:IntrusiveList (Results 1 – 2 of 2) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_list.h29 struct IntrusiveList { struct
30 friend class Iterator;
32 void clear() { in clear()
37 bool empty() const { return size_ == 0; } in empty()
38 uptr size() const { return size_; } in size()
40 void push_back(Item *x) { in push_back()
76 void append_front(IntrusiveList<Item> *l) { in append_front() argument
90 void append_back(IntrusiveList<Item> *l) { in append_back() argument
104 void CheckConsistency() { in CheckConsistency()
135 typedef IteratorBase<IntrusiveList<Item>, Item> Iterator; argument
[all …]
/external/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_list_test.cc63 TEST(SanitizerCommon, IntrusiveList) { in TEST() argument