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

/external/chromium_org/v8/src/
H A Disolate.h396 // PerIsolateThreadData work on some older versions of gcc.
402 // A thread has a PerIsolateThreadData instance for each isolate that it has
405 class PerIsolateThreadData { class in class:v8::internal::Isolate
407 PerIsolateThreadData(Isolate* isolate, ThreadId thread_id) function in class:v8::internal::Isolate::PerIsolateThreadData
420 ~PerIsolateThreadData();
451 PerIsolateThreadData* next_;
452 PerIsolateThreadData* prev_;
458 DISALLOW_COPY_AND_ASSIGN(PerIsolateThreadData);
471 // Returns the PerIsolateThreadData for the current thread (or NULL if one is
473 static PerIsolateThreadData* CurrentPerIsolateThreadDat
[all...]
H A Disolate.cc120 Isolate::PerIsolateThreadData*
123 PerIsolateThreadData* per_thread = NULL;
128 per_thread = new PerIsolateThreadData(this, thread_id);
137 Isolate::PerIsolateThreadData* Isolate::FindPerThreadDataForThisThread() {
143 Isolate::PerIsolateThreadData* Isolate::FindPerThreadDataForThread(
145 PerIsolateThreadData* per_thread = NULL;
1412 Isolate::PerIsolateThreadData::~PerIsolateThreadData() {
1419 Isolate::PerIsolateThreadData*
1422 for (PerIsolateThreadData* dat
[all...]

Completed in 525 milliseconds