Home | History | Annotate | Download | only in src

Lines Matching refs:per_thread

353   PerIsolateThreadData* per_thread = new PerIsolateThreadData(this, thread_id);
357 thread_data_table_->Insert(per_thread);
358 ASSERT(thread_data_table_->Lookup(this, thread_id) == per_thread);
360 return per_thread;
367 PerIsolateThreadData* per_thread = NULL;
370 per_thread = thread_data_table_->Lookup(this, thread_id);
371 if (per_thread == NULL) {
372 per_thread = AllocatePerIsolateThreadData(thread_id);
375 return per_thread;
387 PerIsolateThreadData* per_thread = NULL;
390 per_thread = thread_data_table_->Lookup(this, thread_id);
392 return per_thread;