Home
last modified time | relevance | path

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

/bionic/linker/
Dlinker_block_allocator.cpp47 struct LinkerBlockAllocatorPage { struct
48 LinkerBlockAllocatorPage* next; argument
93 LinkerBlockAllocatorPage* page = find_page(block); in free()
112 for (LinkerBlockAllocatorPage* page = page_list_; page != nullptr; page = page->next) { in protect_all()
120 static_assert(sizeof(LinkerBlockAllocatorPage) == kAllocateSize, in create_new_page()
123 LinkerBlockAllocatorPage* page = reinterpret_cast<LinkerBlockAllocatorPage*>( in create_new_page()
139 LinkerBlockAllocatorPage* LinkerBlockAllocator::find_page(void* block) { in find_page()
142 LinkerBlockAllocatorPage* page = page_list_; in find_page()
160 LinkerBlockAllocatorPage* page = page_list_; in purge()
162 LinkerBlockAllocatorPage* next = page->next; in purge()
Dlinker_block_allocator.h36 struct LinkerBlockAllocatorPage;
58 LinkerBlockAllocatorPage* find_page(void* block);
61 LinkerBlockAllocatorPage* page_list_;