Home
last modified time | relevance | path

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

/frameworks/base/libs/hwui/utils/
DLinearAllocator.cpp123 while (mDtorList) { in ~LinearAllocator()
124 auto node = mDtorList; in ~LinearAllocator()
125 mDtorList = node->next; in ~LinearAllocator()
198 node->next = mDtorList; in addToDestructionList()
199 mDtorList = node; in addToDestructionList()
203 auto node = mDtorList; in runDestructorFor()
210 mDtorList = node->next; in runDestructorFor()
DLinearAllocator.h145 DestructorNode* mDtorList = nullptr; variable