Home
last modified time | relevance | path

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

/art/runtime/mirror/
Dclass.cc104 Handle<Class> h_this(hs.NewHandle(this)); in EnsureExtDataPresent() local
120 set = h_this->CasFieldObject<true>(ext_offset, in EnsureExtDataPresent()
126 set = h_this->CasFieldObject<false>(ext_offset, in EnsureExtDataPresent()
132 ObjPtr<ClassExt> ret(set ? new_ext.Get() : h_this->GetExtData()); in EnsureExtDataPresent()
133 DCHECK(!set || h_this->GetExtData() == new_ext.Get()); in EnsureExtDataPresent()
143 void Class::SetStatus(Handle<Class> h_this, ClassStatus new_status, Thread* self) { in SetStatus() argument
144 ClassStatus old_status = h_this->GetStatus(); in SetStatus()
152 LOG(FATAL) << "Unexpected change back of class status for " << h_this->PrettyClass() in SetStatus()
157 CHECK_EQ(h_this->GetLockOwnerThreadId(), self->GetThreadId()) in SetStatus()
159 << h_this->PrettyClass() << " " << old_status << " -> " << new_status; in SetStatus()
[all …]
Dobject_array-alloc-inl.h68 Handle<ObjectArray<T>> h_this(hs.NewHandle(this)); in CopyOf()
74 new_array->AssignableMemcpy(0, h_this.Get(), 0, std::min(h_this->GetLength(), new_length)); in CopyOf()
Dclass_ext.cc58 Handle<ClassExt> h_this(hs.NewHandle(this)); in ExtendObsoleteArrays() local
59 Handle<PointerArray> old_methods(hs.NewHandle(h_this->GetObsoleteMethods())); in ExtendObsoleteArrays()
60 Handle<ObjectArray<DexCache>> old_dex_caches(hs.NewHandle(h_this->GetObsoleteDexCaches())); in ExtendObsoleteArrays()
100 h_this->SetObsoleteArrays(new_methods.Get(), new_dex_caches.Get()); in ExtendObsoleteArrays()
Darray.cc147 auto h_this(hs.NewHandle(this)); in CopyOf() local
157 h_this->GetRawData(component_size, 0), in CopyOf()
158 std::min(h_this->GetLength(), new_length) << component_shift); in CopyOf()
Dobject.cc211 Handle<mirror::Object> h_this(hs.NewHandle(current_this)); in IdentityHashCode() local
212 Monitor::InflateThinLocked(self, h_this, lw, GenerateIdentityHashCode()); in IdentityHashCode()
214 current_this = h_this.Get(); in IdentityHashCode()
Dclass.h98 static void SetStatus(Handle<Class> h_this, ClassStatus new_status, Thread* self)
346 static ObjPtr<String> ComputeName(Handle<Class> h_this) REQUIRES_SHARED(Locks::mutator_lock_)
1155 static int32_t GetInnerClassFlags(Handle<Class> h_this, int32_t default_value)
/art/runtime/entrypoints/
Dentrypoint_utils-inl.h479 HandleWrapperObjPtr<mirror::Object> h_this(hs2.NewHandleWrapper(this_object)); in FindMethodToCall()
515 if (!method_reference_class->IsAssignableFrom(h_this->GetClass())) { in FindMethodToCall()
518 h_this.Get(), in FindMethodToCall()
581 HandleWrapperObjPtr<mirror::Object> h_this(hs.NewHandleWrapper(this_object)); in FindMethodFromCode()
/art/runtime/
Dinstrumentation.cc1352 Handle<mirror::Object> h_this(hs.NewHandle(this_object)); in PushInstrumentationStackFrame() local
1354 MethodEnterEvent(self, h_this.Get(), method, 0); in PushInstrumentationStackFrame()
1356 MethodUnwindEvent(self, h_this.Get(), method, 0); in PushInstrumentationStackFrame()
1365 instrumentation::InstrumentationStackFrame instrumentation_frame(h_this.Get(), method, lr, in PushInstrumentationStackFrame()