Home
last modified time | relevance | path

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

/external/v8/src/
Dlookup.h52 interceptor_state_(InterceptorState::kUninitialized), in configuration_()
76 interceptor_state_(InterceptorState::kUninitialized), in configuration_()
99 interceptor_state_(InterceptorState::kUninitialized), in configuration_()
120 interceptor_state_(InterceptorState::kUninitialized), in configuration_()
165 void Restart() { RestartInternal(InterceptorState::kUninitialized); } in Restart()
261 enum class InterceptorState { enum
272 RestartInternal(InterceptorState::kProcessNonMasking); in RestartLookupForNonMaskingInterceptors()
274 void RestartInternal(InterceptorState interceptor_state);
329 InterceptorState interceptor_state_;
Dlookup.cc65 if (interceptor_state_ == InterceptorState::kSkipNonMasking) { in Next()
83 void LookupIterator::RestartInternal(InterceptorState interceptor_state) { in RestartInternal()
142 interceptor_state_ = InterceptorState::kUninitialized; in ReloadPropertyInformation()
577 case InterceptorState::kUninitialized: in SkipInterceptor()
578 interceptor_state_ = InterceptorState::kSkipNonMasking; in SkipInterceptor()
580 case InterceptorState::kSkipNonMasking: in SkipInterceptor()
582 case InterceptorState::kProcessNonMasking: in SkipInterceptor()
586 return interceptor_state_ == InterceptorState::kProcessNonMasking; in SkipInterceptor()
614 if (interceptor_state_ == InterceptorState::kProcessNonMasking) { in LookupInHolder()