Home
last modified time | relevance | path

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

/frameworks/base/libs/hwui/utils/
DLinearAllocator.cpp116 while (mDtorList) { in ~LinearAllocator()
117 auto node = mDtorList; in ~LinearAllocator()
118 mDtorList = node->next; in ~LinearAllocator()
190 node->next = mDtorList; in addToDestructionList()
191 mDtorList = node; in addToDestructionList()
195 auto node = mDtorList; in runDestructorFor()
202 mDtorList = node->next; in runDestructorFor()
DLinearAllocator.h145 DestructorNode* mDtorList = nullptr; variable