Home
last modified time | relevance | path

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

/external/v8/src/
Dexecution.cc271 scope->prev_ = thread_local_.postpone_interrupts_; in PushPostponeInterruptsScope()
272 thread_local_.postpone_interrupts_ = scope; in PushPostponeInterruptsScope()
278 PostponeInterruptsScope* top = thread_local_.postpone_interrupts_; in PopPostponeInterruptsScope()
284 thread_local_.postpone_interrupts_ = top->prev_; in PopPostponeInterruptsScope()
297 if (thread_local_.postpone_interrupts_ && in RequestInterrupt()
298 thread_local_.postpone_interrupts_->Intercept(flag)) { in RequestInterrupt()
314 for (PostponeInterruptsScope* current = thread_local_.postpone_interrupts_; in ClearInterrupt()
372 postpone_interrupts_ = NULL; in Clear()
389 postpone_interrupts_ = NULL; in Initialize()
Dexecution.h215 PostponeInterruptsScope* postpone_interrupts_; variable