Home
last modified time | relevance | path

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

/frameworks/base/libs/hwui/utils/
DLinearAllocator.cpp108 while (mDtorList) { in ~LinearAllocator()
109 auto node = mDtorList; in ~LinearAllocator()
110 mDtorList = node->next; in ~LinearAllocator()
182 node->next = mDtorList; in addToDestructionList()
183 mDtorList = node; in addToDestructionList()
187 auto node = mDtorList; in runDestructorFor()
194 mDtorList = node->next; in runDestructorFor()
DLinearAllocator.h146 DestructorNode* mDtorList = nullptr; variable