Home | History | Annotate | Download | only in src

Lines Matching refs:interrupt_flags_

387   return (thread_local_.interrupt_flags_ & INTERRUPT) != 0;
393 thread_local_.interrupt_flags_ |= INTERRUPT;
400 return thread_local_.interrupt_flags_ & PREEMPT;
406 thread_local_.interrupt_flags_ |= PREEMPT;
413 return (thread_local_.interrupt_flags_ & TERMINATE) != 0;
419 thread_local_.interrupt_flags_ |= TERMINATE;
426 return (thread_local_.interrupt_flags_ & RUNTIME_PROFILER_TICK) != 0;
433 thread_local_.interrupt_flags_ |= RUNTIME_PROFILER_TICK;
445 return (thread_local_.interrupt_flags_ & GC_REQUEST) != 0;
451 thread_local_.interrupt_flags_ |= GC_REQUEST;
462 return thread_local_.interrupt_flags_ & DEBUGBREAK;
468 thread_local_.interrupt_flags_ |= DEBUGBREAK;
475 return thread_local_.interrupt_flags_ & DEBUGCOMMAND;
482 thread_local_.interrupt_flags_ |= DEBUGCOMMAND;
490 thread_local_.interrupt_flags_ &= ~static_cast<int>(after_what);
536 interrupt_flags_ = 0;
556 interrupt_flags_ = 0;