Home
last modified time | relevance | path

Searched refs:scheduled_exception_ (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/
Disolate.h277 Object* scheduled_exception_; variable
605 return &thread_local_top_.scheduled_exception_; in THREAD_LOCAL_TOP_ACCESSOR()
623 DCHECK(!thread_local_top_.scheduled_exception_->IsException()); in scheduled_exception()
624 return thread_local_top_.scheduled_exception_; in scheduled_exception()
627 DCHECK(!thread_local_top_.scheduled_exception_->IsException()); in has_scheduled_exception()
628 return thread_local_top_.scheduled_exception_ != heap_.the_hole_value(); in has_scheduled_exception()
631 DCHECK(!thread_local_top_.scheduled_exception_->IsException()); in clear_scheduled_exception()
632 thread_local_top_.scheduled_exception_ = heap_.the_hole_value(); in clear_scheduled_exception()
Disolate.cc91 scheduled_exception_ = NULL; in InitializeInternal()
192 v->VisitPointer(&thread->scheduled_exception_); in Iterate()
870 thread_local_top()->scheduled_exception_ = pending_exception(); in ScheduleThrow()
1287 thread_local_top()->scheduled_exception_ = pending_exception(); in OptionalRescheduleException()
Ddebug.cc2516 isolate_->thread_local_top()->scheduled_exception_ = *scheduled_exception; in OnThrow()