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

  /external/v8/src/
isolate.h 439 // PerIsolateThreadData work on some older versions of gcc.
445 // A thread has a PerIsolateThreadData instance for each isolate that it has
448 class PerIsolateThreadData {
450 PerIsolateThreadData(Isolate* isolate, ThreadId thread_id)
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* CurrentPerIsolateThreadData()
    [all...]
isolate.cc 122 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;
    [all...]

Completed in 1446 milliseconds