Home
last modified time | relevance | path

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

/system/core/libutils/
DLinearAllocator.cpp86 class LinearAllocator::Page { class in android::LinearAllocator
88 Page* next() { return mNextPage; } in next()
89 void setNext(Page* next) { mNextPage = next; } in setNext()
91 Page() in Page() function in android::LinearAllocator::Page
98 return (void*) (((size_t)this) + sizeof(Page)); in start()
106 Page(const Page& /*other*/) {} in Page() argument
107 Page* mNextPage;
122 Page* p = mPages; in ~LinearAllocator()
124 Page* next = p->next(); in ~LinearAllocator()
125 p->~Page(); in ~LinearAllocator()
[all …]
/system/core/include/utils/
DLinearAllocator.h74 class Page; variable
76 Page* newPage(size_t pageSize);
79 void* start(Page *p);
80 void* end(Page* p);
85 Page* mCurrentPage;
86 Page* mPages;