Searched refs:LinkedListEntry (Results 1 - 4 of 4) sorted by relevance

/bionic/linker/
H A Dlinked_list.h23 struct LinkedListEntry { struct
24 LinkedListEntry<T>* next;
37 LinkedListEntry<T>* new_entry = Allocator::alloc();
47 LinkedListEntry<T>* new_entry = Allocator::alloc();
63 LinkedListEntry<T>* entry = head_;
77 LinkedListEntry<T>* p = head_;
87 for (LinkedListEntry<T>* e = head_; e != nullptr; e = e->next) {
96 for (LinkedListEntry<T>* e = head_; e != nullptr; e = e->next) {
104 for (LinkedListEntry<T>* e = head_; e != nullptr; e = e->next) {
113 LinkedListEntry<
[all...]
H A Dlinker.h104 static LinkedListEntry<soinfo>* alloc();
105 static void free(LinkedListEntry<soinfo>* entry);
H A Dlinker.cpp85 static LinkerAllocator<LinkedListEntry<soinfo>> g_soinfo_links_allocator;
274 LinkedListEntry<soinfo>* SoinfoListAllocator::alloc() {
278 void SoinfoListAllocator::free(LinkedListEntry<soinfo>* entry) {
602 static LinkerAllocator<LinkedListEntry<soinfo>> g_soinfo_list_allocator_rw;
605 static LinkedListEntry<soinfo>* alloc() {
609 static void free(LinkedListEntry<soinfo>* ptr) {
/bionic/linker/tests/
H A Dlinked_list_test.cpp32 typedef LinkedListEntry<const char> entry_t;

Completed in 188 milliseconds