Lines Matching refs:InterruptsScope
79 void StackGuard::PushInterruptsScope(InterruptsScope* scope) {
81 DCHECK_NE(scope->mode_, InterruptsScope::kNoop);
82 if (scope->mode_ == InterruptsScope::kPostponeInterrupts) {
89 DCHECK_EQ(scope->mode_, InterruptsScope::kRunInterrupts);
92 for (InterruptsScope* current = thread_local_.interrupt_scopes_;
109 InterruptsScope* top = thread_local_.interrupt_scopes_;
110 DCHECK_NE(top->mode_, InterruptsScope::kNoop);
111 if (top->mode_ == InterruptsScope::kPostponeInterrupts) {
116 DCHECK_EQ(top->mode_, InterruptsScope::kRunInterrupts);
141 // Check the chain of InterruptsScope for interception.
157 // Clear the interrupt flag from the chain of InterruptsScope.
158 for (InterruptsScope* current = thread_local_.interrupt_scopes_;