Lines Matching refs:interrupt_flags_
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()
398 interrupt_flags_ = 0; in Initialize()