Home
last modified time | relevance | path

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

/external/v8/src/
Dexecution.cc311 scope->prev_ = thread_local_.postpone_interrupts_; in PushPostponeInterruptsScope()
312 thread_local_.postpone_interrupts_ = scope; in PushPostponeInterruptsScope()
318 PostponeInterruptsScope* top = thread_local_.postpone_interrupts_; in PopPostponeInterruptsScope()
324 thread_local_.postpone_interrupts_ = top->prev_; in PopPostponeInterruptsScope()
337 if (thread_local_.postpone_interrupts_ && in RequestInterrupt()
338 thread_local_.postpone_interrupts_->Intercept(flag)) { in RequestInterrupt()
354 for (PostponeInterruptsScope* current = thread_local_.postpone_interrupts_; in ClearInterrupt()
412 postpone_interrupts_ = NULL; in Clear()
429 postpone_interrupts_ = NULL; in Initialize()
Dexecution.h215 PostponeInterruptsScope* postpone_interrupts_; variable