Home
last modified time | relevance | path

Searched refs:h_obj (Results 1 – 8 of 8) sorted by relevance

/aosp12/art/runtime/
H A Dtransaction_test.cc106 ASSERT_TRUE(h_obj != nullptr); in TEST_F()
121 ASSERT_TRUE(h_obj != nullptr); in TEST_F()
125 h_obj->MonitorEnter(soa.Self()); in TEST_F()
126 LockWord old_lock_word = h_obj->GetLockWord(false); in TEST_F()
130 h_obj->MonitorExit(soa.Self()); in TEST_F()
153 Handle<mirror::Array> h_obj = hs.NewHandle( in TEST_F() local
159 ASSERT_TRUE(h_obj != nullptr); in TEST_F()
164 EXPECT_EQ(h_obj->GetLength(), kArraySize); in TEST_F()
235 ASSERT_TRUE(h_obj != nullptr); in TEST_F()
335 ASSERT_TRUE(h_obj != nullptr); in TEST_F()
[all …]
H A Dmonitor.cc1111 Handle<mirror::Object> h_obj(hs.NewHandle(obj)); in MonitorEnter() local
1123 return h_obj.Get(); // Success! in MonitorEnter()
1142 return h_obj.Get(); // Success! in MonitorEnter()
1145 if (h_obj->CasLockWord(lock_word, in MonitorEnter()
1150 return h_obj.Get(); // Success! in MonitorEnter()
1192 return h_obj.Get(); // Success! in MonitorEnter()
1215 Handle<mirror::Object> h_obj(hs.NewHandle(obj)); in MonitorExit() local
1244 h_obj->SetLockWord(new_lw, true); in MonitorExit()
1288 LockWord lock_word = h_obj->GetLockWord(true); in Wait()
1305 Inflate(self, self, h_obj.Get(), 0); in Wait()
[all …]
H A Dmethod_handles.cc237 Handle<mirror::Object> h_obj(hs.NewHandle(src_value.GetL())); in ConvertJValueCommon() local
238 if (UNLIKELY(!h_obj.IsNull() && !to->IsAssignableFrom(h_obj->GetClass()))) { in ConvertJValueCommon()
239 ThrowClassCastException(h_to.Get(), h_obj->GetClass()); in ConvertJValueCommon()
242 value->SetL(h_obj.Get()); in ConvertJValueCommon()
H A Dcommon_dex_operations.h221 HandleWrapperObjPtr<mirror::Object> h_obj(hs.NewHandleWrapper(&obj)); in DoFieldPutCommon()
H A Dthread.cc2446 Handle<mirror::Object> h_obj(hs.NewHandle(lock)); in Destroy() local
2447 ObjectLock<mirror::Object> locker(self, h_obj); in Destroy()
/aosp12/art/runtime/entrypoints/quick/
H A Dquick_jni_entrypoints.cc195 HandleWrapperObjPtr<mirror::Object> h_obj(hs.NewHandleWrapper(&o)); in JniMethodEndWithReferenceHandleResult() local
196 CheckReferenceResult(h_obj, self); in JniMethodEndWithReferenceHandleResult()
H A Dquick_field_entrypoints.cc124 HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper( \
162 HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper( \
/aosp12/art/runtime/interpreter/
H A Dunstarted_runtime.cc318 Handle<mirror::Object> h_obj(hs.NewHandle(h_klass->AllocObject(self))); in UnstartedClassNewInstance() local
319 CHECK(h_obj != nullptr); // We don't expect OOM at compile-time. in UnstartedClassNewInstance()
320 EnterInterpreterFromInvoke(self, cons, h_obj.Get(), nullptr, nullptr); in UnstartedClassNewInstance()
322 result->SetL(h_obj.Get()); in UnstartedClassNewInstance()
591 Handle<mirror::Object> h_obj(hs.NewHandle(h_class->AllocObject(self))); in GetResourceAsStream() local
592 if (h_obj == nullptr) { in GetResourceAsStream()
606 EnterInterpreterFromInvoke(self, constructor, h_obj.Get(), args, nullptr); in GetResourceAsStream()
613 result->SetL(h_obj.Get()); in GetResourceAsStream()
1034 Handle<mirror::Object> h_obj(hs.NewHandle(h_class->AllocObject(self))); in CreateInstanceOf() local
1035 if (h_obj != nullptr) { in CreateInstanceOf()
[all …]