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

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

Completed in 81 milliseconds