Searched refs:interrupt_flags_ (Results 1 – 2 of 2) sorted by relevance
274 int intercepted = thread_local_.interrupt_flags_ & scope->intercept_mask_; in PushPostponeInterruptsScope()276 thread_local_.interrupt_flags_ &= ~intercepted; in PushPostponeInterruptsScope()288 DCHECK((thread_local_.interrupt_flags_ & top->intercept_mask_) == 0); in PopPostponeInterruptsScope()289 thread_local_.interrupt_flags_ |= top->intercepted_flags_; in PopPostponeInterruptsScope()298 return thread_local_.interrupt_flags_ & flag; in CheckInterrupt()311 thread_local_.interrupt_flags_ |= flag; in RequestInterrupt()329 thread_local_.interrupt_flags_ &= ~flag; in ClearInterrupt()336 bool result = (thread_local_.interrupt_flags_ & flag); in CheckAndClearInterrupt()337 thread_local_.interrupt_flags_ &= ~flag; in CheckAndClearInterrupt()381 interrupt_flags_ = 0; in Clear()[all …]
152 return thread_local_.interrupt_flags_ != 0; in has_pending_interrupts()220 int interrupt_flags_; variable