Home
last modified time | relevance | path

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

/external/v8/src/
Disolate.h534 Context* context() { return thread_local_top_.context_; } in context()
536 thread_local_top_.context_ = context; in set_context()
538 Context** context_address() { return &thread_local_top_.context_; } in context_address()
540 SaveContext* save_context() {return thread_local_top_.save_context_; } in save_context()
542 thread_local_top_.save_context_ = save; in set_save_context()
546 ThreadId thread_id() { return thread_local_top_.thread_id_; } in thread_id()
547 void set_thread_id(ThreadId id) { thread_local_top_.thread_id_ = id; } in set_thread_id()
552 return thread_local_top_.pending_exception_; in pending_exception()
555 return thread_local_top_.external_caught_exception_; in external_caught_exception()
558 thread_local_top_.external_caught_exception_ = value; in set_external_caught_exception()
[all …]
Dtop.cc820 if (thread_local_top_.pending_exception_ == Failure::OutOfMemoryException()) { in ReportPendingMessages()
822 } else if (thread_local_top_.pending_exception_ == in ReportPendingMessages()
827 if (thread_local_top_.has_pending_message_) { in ReportPendingMessages()
828 thread_local_top_.has_pending_message_ = false; in ReportPendingMessages()
829 if (!thread_local_top_.pending_message_obj_->IsTheHole()) { in ReportPendingMessages()
831 Handle<Object> message_obj(thread_local_top_.pending_message_obj_); in ReportPendingMessages()
832 if (thread_local_top_.pending_message_script_ != NULL) { in ReportPendingMessages()
833 Handle<Script> script(thread_local_top_.pending_message_script_); in ReportPendingMessages()
834 int start_pos = thread_local_top_.pending_message_start_pos_; in ReportPendingMessages()
835 int end_pos = thread_local_top_.pending_message_end_pos_; in ReportPendingMessages()
Disolate.cc646 thread_local_top_.Initialize(); in InitializeThreadLocal()
657 thread_local_top_.external_caught_exception_ = external_caught; in PropagatePendingExceptionToExternalTryCatch()
661 if (thread_local_top_.pending_exception_ == Failure::OutOfMemoryException()) { in PropagatePendingExceptionToExternalTryCatch()
663 } else if (thread_local_top_.pending_exception_ == in PropagatePendingExceptionToExternalTryCatch()
673 if (!thread_local_top_.pending_message_obj_->IsTheHole()) { in PropagatePendingExceptionToExternalTryCatch()
674 try_catch_handler()->message_ = thread_local_top_.pending_message_obj_; in PropagatePendingExceptionToExternalTryCatch()