Lines Matching refs:recipient2
1387 sp<HidlDeathRecipient> recipient2 = new HidlDeathRecipient();
1390 EXPECT_TRUE(dyingBaz->linkToDeath(recipient2, 0x2592));
1391 EXPECT_TRUE(dyingBaz->unlinkToDeath(recipient2));
1400 EXPECT_FALSE(dyingBaz->unlinkToDeath(recipient2));
1413 std::unique_lock<std::mutex> lock2(recipient2->mutex);
1414 recipient2->condition.wait_for(lock2, std::chrono::milliseconds(1000), [&recipient2]() {
1415 return recipient2->fired;
1417 EXPECT_FALSE(recipient2->fired);