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