Searched defs:PerIsolateThreadData (Results 1 - 2 of 2) sorted by relevance

/external/v8/src/
H A Disolate.h437 // PerIsolateThreadData work on some older versions of gcc.
443 // A thread has a PerIsolateThreadData instance for each isolate that it has
446 class PerIsolateThreadData { class in class:v8::internal::Isolate
448 PerIsolateThreadData(Isolate* isolate, ThreadId thread_id) function in class:v8::internal::Isolate::PerIsolateThreadData
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* CurrentPerIsolateThreadDat
[all...]
H A Disolate.cc133 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;
2076 Isolate::PerIsolateThreadData::~PerIsolateThreadData() {
2083 Isolate::PerIsolateThreadData*
[all...]

Completed in 151 milliseconds