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