HomeSort by relevance Sort by last modified time
    Searched refs:page_list_ (Results 1 - 4 of 4) sorted by null

  /bionic/linker/
linker_block_allocator.cpp 57 page_list_(nullptr),
115 for (LinkerBlockAllocatorPage* page = page_list_; page != nullptr; page = page->next) {
141 page->next = page_list_;
142 page_list_ = page;
150 LinkerBlockAllocatorPage* page = page_list_;
168 LinkerBlockAllocatorPage* page = page_list_;
174 page_list_ = nullptr;
linker_block_allocator.h 61 LinkerBlockAllocatorPage* page_list_; member in class:LinkerBlockAllocator
  /bionic/libc/bionic/
bionic_allocator.cpp 105 page_list_(nullptr) {}
110 if (page_list_ == nullptr) {
117 small_object_page_info* page = page_list_;
157 if (page_list_ == page) {
158 page_list_ = page->next_page;
229 page->next_page = page_list_;
231 if (page_list_) {
232 page_list_->prev_page = page;
234 page_list_ = page;
245 if (page_list_ == page)
    [all...]
  /bionic/libc/private/
bionic_allocator.h 101 small_object_page_info* page_list_; member in class:BionicSmallObjectAllocator

Completed in 1126 milliseconds