Home
last modified time | relevance | path

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

/frameworks/base/libs/hwui/tests/unit/
DThreadBaseTests.cpp65 pid_t otherTid = thisTid; in TEST() local
67 auto result = queue().runSync([&otherTid]() -> auto { in TEST()
68 otherTid = gettid(); in TEST()
73 ASSERT_NE(thisTid, otherTid); in TEST()
80 auto otherTid = queue().async([]() -> auto { return gettid(); }); in TEST() local
84 ASSERT_NE(thisTid, otherTid.get()); in TEST()