Lines Matching refs:self

208     Thread* self = Thread::Current();  in DdmHandleChunk()  local
209 ScopedObjectAccess soa(self); in DdmHandleChunk()
211 << self->GetException()->Dump(); in DdmHandleChunk()
212 self->ClearException(); in DdmHandleChunk()
256 Thread* self = Thread::Current(); in DdmHandleChunk() local
257 ScopedObjectAccess soa(self); in DdmHandleChunk()
259 type) << std::endl << self->GetException()->Dump(); in DdmHandleChunk()
260 self->ClearException(); in DdmHandleChunk()
270 Thread* self = Thread::Current(); in DdmBroadcast() local
271 if (self->GetState() != kRunnable) { in DdmBroadcast()
272 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState(); in DdmBroadcast()
276 JNIEnv* env = self->GetJniEnv(); in DdmBroadcast()
343 Thread* self = Thread::Current(); in DdmSetThreadNotification() local
344 ScopedObjectAccess soa(self); in DdmSetThreadNotification()
353 ScopedThreadSuspension sts(self, ThreadState::kWaitingForCheckPointsToRun); in DdmSetThreadNotification()
354 finish_barrier.Increment(self, checkpoints); in DdmSetThreadNotification()
724 Thread* self = Thread::Current(); in DdmSendHeapSegments() local
725 Locks::mutator_lock_->AssertSharedHeld(self); in DdmSendHeapSegments()
741 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); in DdmSendHeapSegments()
750 ScopedThreadSuspension sts(self, kSuspended); in DdmSendHeapSegments()
752 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); in DdmSendHeapSegments()
755 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); in DdmSendHeapSegments()
760 heap->IncrementDisableMovingGC(self); in DdmSendHeapSegments()
762 ScopedThreadSuspension sts(self, kSuspended); in DdmSendHeapSegments()
764 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); in DdmSendHeapSegments()
769 heap->DecrementDisableMovingGC(self); in DdmSendHeapSegments()
775 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); in DdmSendHeapSegments()
949 Thread* self = Thread::Current(); in GetRecentAllocations() local
952 MutexLock mu(self, *Locks::alloc_tracker_lock_); in GetRecentAllocations()
1091 JNIEnv* env = self->GetJniEnv(); in GetRecentAllocations()
1099 void Dbg::DbgThreadLifecycleCallback::ThreadStart(Thread* self) { in ThreadStart() argument
1100 Dbg::PostThreadStart(self); in ThreadStart()
1103 void Dbg::DbgThreadLifecycleCallback::ThreadDeath(Thread* self) { in ThreadDeath() argument
1104 Dbg::PostThreadDeath(self); in ThreadDeath()