Lines Matching refs:self_
1911 self_ = Thread::Current(); in ACQUIRE()
1912 old_cause_ = self_->StartAssertNoThreadSuspension(cause); in ACQUIRE()
1922 self_->EndAssertNoThreadSuspension(old_cause_); in ~ScopedAssertNoThreadSuspension()
1929 Thread* self_;
1938 self_ = Thread::Current(); in ScopedAllowThreadSuspension()
1939 old_cause_ = self_->EndAssertNoThreadSuspension(); in ScopedAllowThreadSuspension()
1946 CHECK(self_->StartAssertNoThreadSuspension(old_cause_) == nullptr); in ~ScopedAllowThreadSuspension()
1953 Thread* self_;
1961 : self_(self), type_(type) { in ScopedStackedShadowFramePusher()
1962 self_->PushStackedShadowFrame(sf, type); in ScopedStackedShadowFramePusher()
1965 self_->PopStackedShadowFrame(type_); in ~ScopedStackedShadowFramePusher()
1969 Thread* const self_;
1978 explicit ScopedDebugDisallowReadBarriers(Thread* self) : self_(self) { in ScopedDebugDisallowReadBarriers()
1979 self_->ModifyDebugDisallowReadBarrier(1); in ScopedDebugDisallowReadBarriers()
1982 self_->ModifyDebugDisallowReadBarrier(-1); in ~ScopedDebugDisallowReadBarriers()
1986 Thread* const self_;
1992 : self_(self) { in ScopedTransitioningToRunnable()
1995 self_->SetIsTransitioningToRunnable(true); in ScopedTransitioningToRunnable()
2001 self_->SetIsTransitioningToRunnable(false); in ~ScopedTransitioningToRunnable()
2006 Thread* const self_;
2025 Thread* self_;