Searched refs:LinkerAllocatorPage (Results 1 - 2 of 2) sorted by relevance

/bionic/linker/
H A Dlinker_allocator.cpp23 struct LinkerAllocatorPage { struct
24 LinkerAllocatorPage* next;
25 uint8_t bytes[PAGE_SIZE-sizeof(LinkerAllocatorPage*)];
65 LinkerAllocatorPage* page = find_page(block);
88 for (LinkerAllocatorPage* page = page_list_; page != nullptr; page = page->next) {
96 LinkerAllocatorPage* page = reinterpret_cast<LinkerAllocatorPage*>(mmap(nullptr, PAGE_SIZE,
108 first_block->num_free_blocks = (PAGE_SIZE - sizeof(LinkerAllocatorPage*))/block_size_;
116 LinkerAllocatorPage* LinkerBlockAllocator::find_page(void* block) {
121 LinkerAllocatorPage* pag
[all...]
H A Dlinker_allocator.h24 struct LinkerAllocatorPage;
43 LinkerAllocatorPage* find_page(void* block);
46 LinkerAllocatorPage* page_list_;

Completed in 37 milliseconds