Searched refs:WriteConstraint (Results 1 – 4 of 4) sorted by relevance
/art/runtime/ |
D | transaction_test.cc | 705 EXPECT_TRUE(transaction.WriteConstraint(soa.Self(), boolean_class.Get())); in TEST_F() 709 EXPECT_TRUE(transaction.WriteConstraint(soa.Self(), true_value.Get())); in TEST_F() 710 EXPECT_TRUE(transaction.WriteConstraint(soa.Self(), array_iftable.Get())); in TEST_F() 712 EXPECT_FALSE(transaction.WriteConstraint(soa.Self(), static_fields_test_class.Get())); in TEST_F() 716 EXPECT_FALSE(transaction.WriteConstraint(soa.Self(), instance_fields_test_object.Get())); in TEST_F() 717 EXPECT_FALSE(transaction.WriteConstraint(soa.Self(), long_array_dim3.Get())); in TEST_F() 729 EXPECT_TRUE(strict_transaction.WriteConstraint(soa.Self(), boolean_class.Get())); in TEST_F() 733 EXPECT_TRUE(strict_transaction.WriteConstraint(soa.Self(), true_value.Get())); in TEST_F() 734 EXPECT_TRUE(strict_transaction.WriteConstraint(soa.Self(), array_iftable.Get())); in TEST_F() 736 EXPECT_TRUE(strict_transaction.WriteConstraint(soa.Self(), static_fields_test_class.Get())); in TEST_F() [all …]
|
D | transaction.h | 146 bool WriteConstraint(Thread* self, ObjPtr<mirror::Object> obj)
|
D | transaction.cc | 122 bool Transaction::WriteConstraint(Thread* self, ObjPtr<mirror::Object> obj) { in WriteConstraint() function in art::Transaction
|
/art/runtime/interpreter/ |
D | interpreter_common.h | 555 if (runtime->GetTransaction()->WriteConstraint(self, obj)) { in CheckWriteConstraint()
|