Lines Matching refs:InterruptsScope
17 class V8_NODISCARD InterruptsScope {
21 V8_EXPORT_PRIVATE InterruptsScope(Isolate* isolate, intptr_t intercept_mask,
24 virtual ~InterruptsScope() {
39 InterruptsScope* prev_;
48 class V8_NODISCARD PostponeInterruptsScope : public InterruptsScope {
52 : InterruptsScope(isolate, intercept_mask,
53 InterruptsScope::kPostponeInterrupts) {}
60 class V8_NODISCARD SafeForInterruptsScope : public InterruptsScope {
64 : InterruptsScope(isolate, intercept_mask,
65 InterruptsScope::kRunInterrupts) {}