Home
last modified time | relevance | path

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

/external/chromium_org/v8/src/
Dexecution.cc342 scope->prev_ = thread_local_.postpone_interrupts_; in PushPostponeInterruptsScope()
343 thread_local_.postpone_interrupts_ = scope; in PushPostponeInterruptsScope()
349 PostponeInterruptsScope* top = thread_local_.postpone_interrupts_; in PopPostponeInterruptsScope()
355 thread_local_.postpone_interrupts_ = top->prev_; in PopPostponeInterruptsScope()
368 if (thread_local_.postpone_interrupts_ && in RequestInterrupt()
369 thread_local_.postpone_interrupts_->Intercept(flag)) { in RequestInterrupt()
382 for (PostponeInterruptsScope* current = thread_local_.postpone_interrupts_; in ClearInterrupt()
440 postpone_interrupts_ = NULL; in Clear()
457 postpone_interrupts_ = NULL; in Initialize()
Dexecution.h260 PostponeInterruptsScope* postpone_interrupts_; variable