Lines Matching refs:interrupt_flags_
295 return thread_local_.interrupt_flags_ & INTERRUPT; in IsInterrupted()
301 thread_local_.interrupt_flags_ |= INTERRUPT; in Interrupt()
308 return thread_local_.interrupt_flags_ & PREEMPT; in IsPreempted()
314 thread_local_.interrupt_flags_ |= PREEMPT; in Preempt()
321 return thread_local_.interrupt_flags_ & TERMINATE; in IsTerminateExecution()
327 thread_local_.interrupt_flags_ |= TERMINATE; in TerminateExecution()
334 return thread_local_.interrupt_flags_ & RUNTIME_PROFILER_TICK; in IsRuntimeProfilerTick()
341 thread_local_.interrupt_flags_ |= RUNTIME_PROFILER_TICK; in RequestRuntimeProfilerTick()
354 return thread_local_.interrupt_flags_ & DEBUGBREAK; in IsDebugBreak()
360 thread_local_.interrupt_flags_ |= DEBUGBREAK; in DebugBreak()
367 return thread_local_.interrupt_flags_ & DEBUGCOMMAND; in IsDebugCommand()
374 thread_local_.interrupt_flags_ |= DEBUGCOMMAND; in DebugCommand()
382 thread_local_.interrupt_flags_ &= ~static_cast<int>(after_what); in Continue()
427 interrupt_flags_ = 0; in Clear()
447 interrupt_flags_ = 0; in Initialize()