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

  /external/v8/src/
isolate.h 402 // PerIsolateThreadData work on some older versions of gcc.
408 // A thread has a PerIsolateThreadData instance for each isolate that it has
411 class PerIsolateThreadData {
413 PerIsolateThreadData(Isolate* isolate, ThreadId thread_id)
423 ~PerIsolateThreadData();
448 PerIsolateThreadData* next_;
449 PerIsolateThreadData* prev_;
455 DISALLOW_COPY_AND_ASSIGN(PerIsolateThreadData);
468 // Returns the PerIsolateThreadData for the current thread (or NULL if one is
470 static PerIsolateThreadData* CurrentPerIsolateThreadData()
    [all...]
isolate.cc 121 Isolate::PerIsolateThreadData*
124 PerIsolateThreadData* per_thread = NULL;
129 per_thread = new PerIsolateThreadData(this, thread_id);
144 PerIsolateThreadData* per_thread =
154 Isolate::PerIsolateThreadData* Isolate::FindPerThreadDataForThisThread() {
160 Isolate::PerIsolateThreadData* Isolate::FindPerThreadDataForThread(
162 PerIsolateThreadData* per_thread = NULL;
    [all...]

Completed in 43 milliseconds