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

  /external/chromium_org/v8/src/
execution.cc 337 int intercepted = thread_local_.interrupt_flags_ & scope->intercept_mask_;
339 thread_local_.interrupt_flags_ &= ~intercepted;
351 DCHECK((thread_local_.interrupt_flags_ & top->intercept_mask_) == 0);
352 thread_local_.interrupt_flags_ |= top->intercepted_flags_;
361 return thread_local_.interrupt_flags_ & flag;
374 thread_local_.interrupt_flags_ |= flag;
389 thread_local_.interrupt_flags_ &= ~flag;
396 bool result = (thread_local_.interrupt_flags_ & flag);
397 thread_local_.interrupt_flags_ &= ~flag;
441 interrupt_flags_ = 0
    [all...]
execution.h 211 return thread_local_.interrupt_flags_ != 0;
261 int interrupt_flags_; member in class:v8::internal::FINAL::FINAL

Completed in 750 milliseconds