Searched refs:boolean_class (Results 1 – 1 of 1) sorted by relevance
/aosp12/art/runtime/ |
H A D | transaction_test.cc | 626 Handle<mirror::Class> boolean_class = hs.NewHandle( in TEST_F() local 628 ASSERT_TRUE(boolean_class != nullptr); in TEST_F() 629 ASSERT_TRUE(heap->ObjectIsInBootImageSpace(boolean_class.Get())); in TEST_F() 631 mirror::Class::FindField(soa.Self(), boolean_class.Get(), "TRUE", "Ljava/lang/Boolean;"); in TEST_F() 634 Handle<mirror::Object> true_value = hs.NewHandle(true_field->GetObject(boolean_class.Get())); in TEST_F() 638 mirror::Class::FindField(soa.Self(), boolean_class.Get(), "value", "Z"); in TEST_F() 705 EXPECT_TRUE(transaction.WriteConstraint(soa.Self(), boolean_class.Get())); in TEST_F() 706 EXPECT_FALSE(transaction.ReadConstraint(soa.Self(), boolean_class.Get())); in TEST_F() 729 EXPECT_TRUE(strict_transaction.WriteConstraint(soa.Self(), boolean_class.Get())); in TEST_F() 730 EXPECT_TRUE(strict_transaction.ReadConstraint(soa.Self(), boolean_class.Get())); in TEST_F()
|