Lines Matching defs:self
75 Object* Object::CopyObject(Thread* self, mirror::Object* dest, mirror::Object* src,
102 heap->AddFinalizerReference(self, &dest);
110 CopyObjectVisitor(Thread* self, Handle<Object>* orig, size_t num_bytes)
111 : self_(self), orig_(orig), num_bytes_(num_bytes) {
126 Object* Object::Clone(Thread* self) {
132 StackHandleScope<1> hs(self);
135 CopyObjectVisitor visitor(self, &this_object, num_bytes);
137 copy = heap->AllocObject<true>(self, GetClass(), num_bytes, visitor);
139 copy = heap->AllocNonMovableObject<true>(self, GetClass(), num_bytes, visitor);
177 Thread* self = Thread::Current();
178 StackHandleScope<1> hs(self);
180 Monitor::InflateThinLocked(self, h_this, lw, GenerateIdentityHashCode());