Home
last modified time | relevance | path

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

/system/core/init/
Depoll_test.cpp30 std::unordered_set<void*> sValidObjects; variable
34 CatchDtor() { CHECK(sValidObjects.emplace(this).second); } in CatchDtor()
35 CatchDtor(const CatchDtor&) { CHECK(sValidObjects.emplace(this).second); } in CatchDtor()
36 CatchDtor(const CatchDtor&&) { CHECK(sValidObjects.emplace(this).second); } in CatchDtor()
37 ~CatchDtor() { CHECK_EQ(sValidObjects.erase(this), size_t{1}); } in ~CatchDtor()
55 ASSERT_NE(sValidObjects.find((void*)&catch_dtor), sValidObjects.end()); in TEST()