Home
last modified time | relevance | path

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

/bionic/linker/
Dlinker_block_allocator.cpp59 page_list_(nullptr), in LinkerBlockAllocator()
110 for (LinkerBlockAllocatorPage* page = page_list_; page != nullptr; page = page->next) { in protect_all()
133 page->next = page_list_; in create_new_page()
134 page_list_ = page; in create_new_page()
140 LinkerBlockAllocatorPage* page = page_list_; in find_page()
158 LinkerBlockAllocatorPage* page = page_list_; in purge()
164 page_list_ = nullptr; in purge()
Dlinker_block_allocator.h64 LinkerBlockAllocatorPage* page_list_; variable
/bionic/libc/bionic/
Dbionic_allocator.cpp103 page_list_(nullptr) {} in BionicSmallObjectAllocator()
108 if (page_list_ == nullptr) { in alloc()
115 small_object_page_info* page = page_list_; in alloc()
155 if (page_list_ == page) { in free_page()
156 page_list_ = page->next_page; in free_page()
225 page->next_page = page_list_; in add_to_page_list()
227 if (page_list_) { in add_to_page_list()
228 page_list_->prev_page = page; in add_to_page_list()
230 page_list_ = page; in add_to_page_list()
241 if (page_list_ == page) { in remove_from_page_list()
[all …]
/bionic/libc/private/
Dbionic_allocator.h97 small_object_page_info* page_list_; variable