Home
last modified time | relevance | path

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

/art/runtime/
Dtransaction_test.cc705 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 …]
Dtransaction.h146 bool WriteConstraint(Thread* self, ObjPtr<mirror::Object> obj)
Dtransaction.cc122 bool Transaction::WriteConstraint(Thread* self, ObjPtr<mirror::Object> obj) { in WriteConstraint() function in art::Transaction
/art/runtime/interpreter/
Dinterpreter_common.h555 if (runtime->GetTransaction()->WriteConstraint(self, obj)) { in CheckWriteConstraint()