Searched refs:mDtorList (Results 1 – 2 of 2) sorted by relevance
108 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()
146 DestructorNode* mDtorList = nullptr; variable