Searched refs:alloc (Results 1 - 7 of 7) sorted by relevance

/bionic/linker/tests/
H A Dlinker_allocator_test.cpp54 test_struct_nominal* ptr1 = allocator.alloc();
56 test_struct_nominal* ptr2 = allocator.alloc();
70 char* ptr1 = reinterpret_cast<char*>(allocator.alloc());
71 char* ptr2 = reinterpret_cast<char*>(allocator.alloc());
81 test_struct_larger* ptr1 = allocator.alloc();
82 test_struct_larger* ptr2 = allocator.alloc();
93 ASSERT_TRUE(allocator.alloc() != nullptr);
96 test_struct_larger* ptr_to_free = allocator.alloc();
106 test_struct_larger* page1_ptr = allocator.alloc();
109 allocator.alloc();
[all...]
H A Dlinked_list_test.cpp34 static entry_t* alloc() { function in class:__anon954::LinkedListTestAllocator
/bionic/linker/
H A Dlinker_allocator.h37 void* alloc();
63 T* alloc() { return reinterpret_cast<T*>(block_allocator_.alloc()); } function in class:LinkerAllocator
H A Dlinked_list.h37 LinkedListEntry<T>* new_entry = Allocator::alloc();
47 LinkedListEntry<T>* new_entry = Allocator::alloc();
H A Dlinker_allocator.cpp39 void* LinkerBlockAllocator::alloc() { function in class:LinkerBlockAllocator
H A Dlinker.h104 static LinkedListEntry<soinfo>* alloc();
H A Dlinker.cpp274 LinkedListEntry<soinfo>* SoinfoListAllocator::alloc() { function in class:SoinfoListAllocator
275 return g_soinfo_links_allocator.alloc();
293 soinfo* si = g_soinfo_allocator.alloc();
605 static LinkedListEntry<soinfo>* alloc() { function in class:SoinfoListAllocatorRW
606 return g_soinfo_list_allocator_rw.alloc();

Completed in 420 milliseconds