Home
last modified time | relevance | path

Searched refs:LinkerBlockAllocatorPage (Results 1 – 2 of 2) sorted by relevance

/bionic/linker/
Dlinker_block_allocator.cpp44 struct LinkerBlockAllocatorPage { struct
45 LinkerBlockAllocatorPage* next; argument
90 LinkerBlockAllocatorPage* page = find_page(block); in free()
115 for (LinkerBlockAllocatorPage* page = page_list_; page != nullptr; page = page->next) { in protect_all()
123 static_assert(sizeof(LinkerBlockAllocatorPage) == kAllocateSize, in create_new_page()
126 LinkerBlockAllocatorPage* page = reinterpret_cast<LinkerBlockAllocatorPage*>( in create_new_page()
145 LinkerBlockAllocatorPage* LinkerBlockAllocator::find_page(void* block) { in find_page()
150 LinkerBlockAllocatorPage* page = page_list_; in find_page()
168 LinkerBlockAllocatorPage* page = page_list_; in purge()
170 LinkerBlockAllocatorPage* next = page->next; in purge()
Dlinker_block_allocator.h36 struct LinkerBlockAllocatorPage;
58 LinkerBlockAllocatorPage* find_page(void* block);
61 LinkerBlockAllocatorPage* page_list_;