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

  /bionic/linker/
linker_allocator.h 24 struct LinkerAllocatorPage;
43 LinkerAllocatorPage* find_page(void* block);
46 LinkerAllocatorPage* page_list_;
linker_allocator.cpp 23 struct LinkerAllocatorPage {
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* page = page_list_
    [all...]

Completed in 382 milliseconds