Home
last modified time | relevance | path

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

/art/runtime/
Dtransaction_test.cc690 EXPECT_FALSE(transaction.ReadConstraint(soa.Self(), boolean_class.Get())); in TEST_F()
697 EXPECT_FALSE(transaction.ReadConstraint(soa.Self(), static_fields_test_class.Get())); in TEST_F()
714 EXPECT_TRUE(strict_transaction.ReadConstraint(soa.Self(), boolean_class.Get())); in TEST_F()
721 EXPECT_TRUE(strict_transaction.ReadConstraint(soa.Self(), static_fields_test_class.Get())); in TEST_F()
728 EXPECT_FALSE(strict_transaction.ReadConstraint(soa.Self(), static_field_class.Get())); in TEST_F()
Dtransaction.h143 bool ReadConstraint(Thread* self, ObjPtr<mirror::Object> obj)
Dtransaction.cc155 bool Transaction::ReadConstraint(Thread* self, ObjPtr<mirror::Object> obj) { in ReadConstraint() function in art::Transaction
/art/runtime/interpreter/
Dinterpreter_common.h523 if (Runtime::Current()->GetTransaction()->ReadConstraint(self, obj)) { in DoFieldGet()