Home
last modified time | relevance | path

Searched refs:interrupt_flags_ (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/
Dexecution.cc295 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()
[all …]
Dexecution.h220 return thread_local_.interrupt_flags_ != 0; in has_pending_interrupts()
273 int interrupt_flags_; variable