HomeSort by relevance Sort by last modified time
    Searched defs:PerIsolateThreadData (Results 1 - 2 of 2) sorted by null

  /external/v8/src/
isolate.h 437 // PerIsolateThreadData work on some older versions of gcc.
443 // A thread has a PerIsolateThreadData instance for each isolate that it has
446 class PerIsolateThreadData {
448 PerIsolateThreadData(Isolate* isolate, ThreadId thread_id)
458 ~PerIsolateThreadData();
483 PerIsolateThreadData* next_;
484 PerIsolateThreadData* prev_;
490 DISALLOW_COPY_AND_ASSIGN(PerIsolateThreadData);
503 // Returns the PerIsolateThreadData for the current thread (or NULL if one is
505 static PerIsolateThreadData* CurrentPerIsolateThreadData()
    [all...]
isolate.cc 133 Isolate::PerIsolateThreadData*
136 PerIsolateThreadData* per_thread = NULL;
141 per_thread = new PerIsolateThreadData(this, thread_id);
156 PerIsolateThreadData* per_thread =
166 Isolate::PerIsolateThreadData* Isolate::FindPerThreadDataForThisThread() {
172 Isolate::PerIsolateThreadData* Isolate::FindPerThreadDataForThread(
174 PerIsolateThreadData* per_thread = NULL;
    [all...]

Completed in 336 milliseconds