HomeSort by relevance Sort by last modified time
    Searched refs:interrupt_flags_ (Results 1 - 2 of 2) sorted by null

  /external/v8/src/
execution.cc 274 int intercepted = thread_local_.interrupt_flags_ & scope->intercept_mask_;
276 thread_local_.interrupt_flags_ &= ~intercepted;
288 DCHECK((thread_local_.interrupt_flags_ & top->intercept_mask_) == 0);
289 thread_local_.interrupt_flags_ |= top->intercepted_flags_;
298 return thread_local_.interrupt_flags_ & flag;
311 thread_local_.interrupt_flags_ |= flag;
329 thread_local_.interrupt_flags_ &= ~flag;
336 bool result = (thread_local_.interrupt_flags_ & flag);
337 thread_local_.interrupt_flags_ &= ~flag;
381 interrupt_flags_ = 0
    [all...]
execution.h 152 return thread_local_.interrupt_flags_ != 0;
220 int interrupt_flags_; member in class:v8::internal::final::final

Completed in 48 milliseconds