Home
last modified time | relevance | path

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

/frameworks/base/libs/hwui/utils/
DLinearAllocator.cpp127 while (mDtorList) { in ~LinearAllocator()
128 auto node = mDtorList; in ~LinearAllocator()
129 mDtorList = node->next; in ~LinearAllocator()
201 node->next = mDtorList; in addToDestructionList()
202 mDtorList = node; in addToDestructionList()
206 auto node = mDtorList; in runDestructorFor()
213 mDtorList = node->next; in runDestructorFor()
DLinearAllocator.h128 DestructorNode* mDtorList = nullptr; variable