Searched refs:interrupt_flags_ (Results 1 – 2 of 2) sorted by relevance
85 thread_local_.interrupt_flags_ & scope->intercept_mask_; in PushInterruptsScope()87 thread_local_.interrupt_flags_ &= ~intercepted; in PushInterruptsScope()97 thread_local_.interrupt_flags_ |= restored_flags; in PushInterruptsScope()113 DCHECK_EQ(thread_local_.interrupt_flags_ & top->intercept_mask_, 0); in PopInterruptsScope()114 thread_local_.interrupt_flags_ |= top->intercepted_flags_; in PopInterruptsScope()122 if ((thread_local_.interrupt_flags_ & flag) && in PopInterruptsScope()124 thread_local_.interrupt_flags_ &= ~flag; in PopInterruptsScope()136 return (thread_local_.interrupt_flags_ & flag) != 0; in CheckInterrupt()148 thread_local_.interrupt_flags_ |= flag; in RequestInterrupt()164 thread_local_.interrupt_flags_ &= ~flag; in ClearInterrupt()[all …]
114 return thread_local_.interrupt_flags_ != 0; in has_pending_interrupts()181 intptr_t interrupt_flags_ = 0; variable