Lines Matching refs:interrupt_flags_
253 return thread_local_.interrupt_flags_ != 0; in IsSet()
259 return thread_local_.interrupt_flags_ & INTERRUPT; in IsInterrupted()
265 thread_local_.interrupt_flags_ |= INTERRUPT; in Interrupt()
272 return thread_local_.interrupt_flags_ & PREEMPT; in IsPreempted()
278 thread_local_.interrupt_flags_ |= PREEMPT; in Preempt()
285 return thread_local_.interrupt_flags_ & TERMINATE; in IsTerminateExecution()
291 thread_local_.interrupt_flags_ |= TERMINATE; in TerminateExecution()
299 return thread_local_.interrupt_flags_ & DEBUGBREAK; in IsDebugBreak()
305 thread_local_.interrupt_flags_ |= DEBUGBREAK; in DebugBreak()
312 return thread_local_.interrupt_flags_ & DEBUGCOMMAND; in IsDebugCommand()
319 thread_local_.interrupt_flags_ |= DEBUGCOMMAND; in DebugCommand()
327 thread_local_.interrupt_flags_ &= ~static_cast<int>(after_what); in Continue()
328 if (thread_local_.interrupt_flags_ == 0) { in Continue()
374 interrupt_flags_ = 0; in Clear()
393 interrupt_flags_ = 0; in Initialize()