Home
last modified time | relevance | path

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

/art/runtime/
Dtransaction_test.cc689 EXPECT_TRUE(transaction.WriteConstraint(soa.Self(), boolean_class.Get())); in TEST_F()
693 EXPECT_TRUE(transaction.WriteConstraint(soa.Self(), true_value.Get())); in TEST_F()
694 EXPECT_TRUE(transaction.WriteConstraint(soa.Self(), array_iftable.Get())); in TEST_F()
696 EXPECT_FALSE(transaction.WriteConstraint(soa.Self(), static_fields_test_class.Get())); in TEST_F()
700 EXPECT_FALSE(transaction.WriteConstraint(soa.Self(), instance_fields_test_object.Get())); in TEST_F()
701 EXPECT_FALSE(transaction.WriteConstraint(soa.Self(), long_array_dim2.Get())); in TEST_F()
713 EXPECT_TRUE(strict_transaction.WriteConstraint(soa.Self(), boolean_class.Get())); in TEST_F()
717 EXPECT_TRUE(strict_transaction.WriteConstraint(soa.Self(), true_value.Get())); in TEST_F()
718 EXPECT_TRUE(strict_transaction.WriteConstraint(soa.Self(), array_iftable.Get())); in TEST_F()
720 EXPECT_TRUE(strict_transaction.WriteConstraint(soa.Self(), static_fields_test_class.Get())); in TEST_F()
[all …]
Dtransaction.h147 bool WriteConstraint(Thread* self, ObjPtr<mirror::Object> obj)
Dtransaction.cc121 bool Transaction::WriteConstraint(Thread* self, ObjPtr<mirror::Object> obj) { in WriteConstraint() function in art::Transaction
/art/runtime/interpreter/
Dinterpreter_common.h641 if (runtime->GetTransaction()->WriteConstraint(self, obj)) { in CheckWriteConstraint()