HomeSort by relevance Sort by last modified time
    Searched refs:thread_local_top_ (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/v8/src/
isolate.h 536 Context* context() { return thread_local_top_.context_; }
539 thread_local_top_.context_ = context;
541 Context** context_address() { return &thread_local_top_.context_; }
543 SaveContext* save_context() { return thread_local_top_.save_context_; }
545 thread_local_top_.save_context_ = save;
549 ThreadId thread_id() { return thread_local_top_.thread_id_; }
550 void set_thread_id(ThreadId id) { thread_local_top_.thread_id_ = id; }
555 return thread_local_top_.pending_exception_;
558 return thread_local_top_.external_caught_exception_;
561 thread_local_top_.external_caught_exception_ = value
    [all...]
isolate.cc     [all...]
  /external/v8/src/
isolate.h 518 Context* context() { return thread_local_top_.context_; }
521 thread_local_top_.context_ = context;
523 Context** context_address() { return &thread_local_top_.context_; }
525 SaveContext* save_context() {return thread_local_top_.save_context_; }
527 thread_local_top_.save_context_ = save;
531 ThreadId thread_id() { return thread_local_top_.thread_id_; }
532 void set_thread_id(ThreadId id) { thread_local_top_.thread_id_ = id; }
537 return thread_local_top_.pending_exception_;
540 return thread_local_top_.external_caught_exception_;
543 thread_local_top_.external_caught_exception_ = value
1170 ThreadLocalTop thread_local_top_; member in class:v8::internal::Isolate
    [all...]
isolate.cc     [all...]

Completed in 27 milliseconds