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

/external/v8/src/
H A Disolate.h439 // PerIsolateThreadData work on some older versions of gcc.
445 // A thread has a PerIsolateThreadData instance for each isolate that it has
448 class PerIsolateThreadData { class in class:v8::internal::Isolate
450 PerIsolateThreadData(Isolate* isolate, ThreadId thread_id) function in class:v8::internal::Isolate::PerIsolateThreadData
460 ~PerIsolateThreadData();
485 PerIsolateThreadData* next_;
486 PerIsolateThreadData* prev_;
492 DISALLOW_COPY_AND_ASSIGN(PerIsolateThreadData);
505 // Returns the PerIsolateThreadData for the current thread (or NULL if one is
507 static PerIsolateThreadData* CurrentPerIsolateThreadDat
[all...]
H A Disolate.cc122 Isolate::PerIsolateThreadData*
125 PerIsolateThreadData* per_thread = NULL;
130 per_thread = new PerIsolateThreadData(this, thread_id);
145 PerIsolateThreadData* per_thread =
155 Isolate::PerIsolateThreadData* Isolate::FindPerThreadDataForThisThread() {
161 Isolate::PerIsolateThreadData* Isolate::FindPerThreadDataForThread(
163 PerIsolateThreadData* per_thread = NULL;
1751 Isolate::PerIsolateThreadData::~PerIsolateThreadData() {
1758 Isolate::PerIsolateThreadData*
[all...]

Completed in 47 milliseconds