Lines Matching refs:self_
1927 self_ = Thread::Current(); in ACQUIRE()
1928 old_cause_ = self_->StartAssertNoThreadSuspension(cause); in ACQUIRE()
1938 self_->EndAssertNoThreadSuspension(old_cause_); in ~ScopedAssertNoThreadSuspension()
1945 Thread* self_;
1954 self_ = Thread::Current(); in ScopedAllowThreadSuspension()
1955 old_cause_ = self_->EndAssertNoThreadSuspension(); in ScopedAllowThreadSuspension()
1962 CHECK(self_->StartAssertNoThreadSuspension(old_cause_) == nullptr); in ~ScopedAllowThreadSuspension()
1969 Thread* self_;
1977 : self_(self), type_(type) { in ScopedStackedShadowFramePusher()
1978 self_->PushStackedShadowFrame(sf, type); in ScopedStackedShadowFramePusher()
1981 self_->PopStackedShadowFrame(type_); in ~ScopedStackedShadowFramePusher()
1985 Thread* const self_;
1994 explicit ScopedDebugDisallowReadBarriers(Thread* self) : self_(self) { in ScopedDebugDisallowReadBarriers()
1995 self_->ModifyDebugDisallowReadBarrier(1); in ScopedDebugDisallowReadBarriers()
1998 self_->ModifyDebugDisallowReadBarrier(-1); in ~ScopedDebugDisallowReadBarriers()
2002 Thread* const self_;
2008 : self_(self) { in ScopedTransitioningToRunnable()
2011 self_->SetIsTransitioningToRunnable(true); in ScopedTransitioningToRunnable()
2017 self_->SetIsTransitioningToRunnable(false); in ~ScopedTransitioningToRunnable()
2022 Thread* const self_;
2041 Thread* self_;