OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:thread_local_top_
(Results
1 - 3
of
3
) sorted by null
/external/v8/src/
isolate.h
534
Context* context() { return
thread_local_top_
.context_; }
536
thread_local_top_
.context_ = context;
538
Context** context_address() { return &
thread_local_top_
.context_; }
540
SaveContext* save_context() {return
thread_local_top_
.save_context_; }
542
thread_local_top_
.save_context_ = save;
546
ThreadId thread_id() { return
thread_local_top_
.thread_id_; }
547
void set_thread_id(ThreadId id) {
thread_local_top_
.thread_id_ = id; }
552
return
thread_local_top_
.pending_exception_;
555
return
thread_local_top_
.external_caught_exception_;
558
thread_local_top_
.external_caught_exception_ = value
1155
ThreadLocalTop
thread_local_top_
;
member in class:v8::internal::Isolate
[
all
...]
top.cc
820
if (
thread_local_top_
.pending_exception_ == Failure::OutOfMemoryException()) {
822
} else if (
thread_local_top_
.pending_exception_ ==
827
if (
thread_local_top_
.has_pending_message_) {
828
thread_local_top_
.has_pending_message_ = false;
829
if (!
thread_local_top_
.pending_message_obj_->IsTheHole()) {
831
Handle<Object> message_obj(
thread_local_top_
.pending_message_obj_);
832
if (
thread_local_top_
.pending_message_script_ != NULL) {
833
Handle<Script> script(
thread_local_top_
.pending_message_script_);
834
int start_pos =
thread_local_top_
.pending_message_start_pos_;
835
int end_pos =
thread_local_top_
.pending_message_end_pos_
[
all
...]
isolate.cc
646
thread_local_top_
.Initialize();
657
thread_local_top_
.external_caught_exception_ = external_caught;
661
if (
thread_local_top_
.pending_exception_ == Failure::OutOfMemoryException()) {
663
} else if (
thread_local_top_
.pending_exception_ ==
673
if (!
thread_local_top_
.pending_message_obj_->IsTheHole()) {
674
try_catch_handler()->message_ =
thread_local_top_
.pending_message_obj_;
Completed in 201 milliseconds