Lines Matching refs:strong
648 sp<IBinder> strong = new BBinder(); in TEST_F() local
649 wp<IBinder> weak = strong; in TEST_F()
651 EXPECT_TRUE(strong != NULL); in TEST_F()
652 EXPECT_EQ(strong, strong_from_weak); in TEST_F()
653 strong = NULL; in TEST_F()
662 sp<IBinder> strong = new BBinder(); in TEST_F() local
666 ASSERT_TRUE(strong != NULL); in TEST_F()
668 ret = data.writeWeakBinder(strong); in TEST_F()
715 struct flat_binder_object *strong = (struct flat_binder_object *)(data.data()); in TEST_F() local
716 __u32 oldHandle = strong->handle; in TEST_F()
717 strong->handle = freedHandle; in TEST_F()
727 strong->handle = oldHandle; in TEST_F()
921 sp<IBinder> strong; in onTransact() local
930 strong = weak.promote(); in onTransact()
936 if (strong == NULL) { in onTransact()