Home
last modified time | relevance | path

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

/bionic/linker/
Dlinker_allocator.cpp92 auto page_record = find_page_record(block_record); in alloc() local
94 if (page_record->allocated_blocks_cnt == 0) { in alloc()
98 page_record->free_blocks_cnt--; in alloc()
99 page_record->allocated_blocks_cnt++; in alloc()
106 void LinkerSmallObjectAllocator::free_page(linker_vector_t::iterator page_record) { in free_page() argument
107 void* page_start = reinterpret_cast<void*>(page_record->page_addr); in free_page()
127 page_records_.erase(page_record); in free_page()
132 auto page_record = find_page_record(ptr); in free() local
148 page_record->free_blocks_cnt++; in free()
149 page_record->allocated_blocks_cnt--; in free()
[all …]
Dlinker_allocator.h111 void free_page(linker_vector_t::iterator page_record);