Lines Matching refs:h_this
154 ObjPtr<Object> Object::Clone(Handle<Object> h_this, Thread* self) { in Clone() argument
155 CHECK(!h_this->IsClass()) << "Can't clone classes."; in Clone()
159 size_t num_bytes = h_this->SizeOf(); in Clone()
160 CopyObjectVisitor visitor(&h_this, num_bytes); in Clone()
161 ObjPtr<Object> copy = heap->IsMovableObject(h_this.Get()) in Clone()
162 ? heap->AllocObject(self, h_this->GetClass(), num_bytes, visitor) in Clone()
163 : heap->AllocNonMovableObject(self, h_this->GetClass(), num_bytes, visitor); in Clone()
164 if (h_this->GetClass()->IsFinalizable()) { in Clone()
206 Handle<mirror::Object> h_this(hs.NewHandle(current_this)); in IdentityHashCode() local
207 Monitor::InflateThinLocked(self, h_this, lw, GenerateIdentityHashCode()); in IdentityHashCode()
209 current_this = h_this.Get(); in IdentityHashCode()