Home
last modified time | relevance | path

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

/bionic/linker/
Dlinker_block_allocator.cpp57 page_list_(nullptr), in LinkerBlockAllocator()
115 for (LinkerBlockAllocatorPage* page = page_list_; page != nullptr; page = page->next) { in protect_all()
141 page->next = page_list_; in create_new_page()
142 page_list_ = page; in create_new_page()
150 LinkerBlockAllocatorPage* page = page_list_; in find_page()
168 LinkerBlockAllocatorPage* page = page_list_; in purge()
174 page_list_ = nullptr; in purge()
Dlinker_block_allocator.h61 LinkerBlockAllocatorPage* page_list_; variable
/bionic/libc/bionic/
Dbionic_allocator.cpp105 page_list_(nullptr) {} in BionicSmallObjectAllocator()
110 if (page_list_ == nullptr) { in alloc()
117 small_object_page_info* page = page_list_; in alloc()
157 if (page_list_ == page) { in free_page()
158 page_list_ = page->next_page; in free_page()
229 page->next_page = page_list_; in add_to_page_list()
231 if (page_list_) { in add_to_page_list()
232 page_list_->prev_page = page; in add_to_page_list()
234 page_list_ = page; in add_to_page_list()
245 if (page_list_ == page) { in remove_from_page_list()
[all …]
/bionic/libc/private/
Dbionic_allocator.h101 small_object_page_info* page_list_; variable