Home | History | Annotate | Download | only in src

Lines Matching refs:per_thread

326   PerIsolateThreadData* per_thread = new PerIsolateThreadData(this, thread_id);
330 thread_data_table_->Insert(per_thread);
331 ASSERT(thread_data_table_->Lookup(this, thread_id) == per_thread);
333 return per_thread;
340 PerIsolateThreadData* per_thread = NULL;
343 per_thread = thread_data_table_->Lookup(this, thread_id);
344 if (per_thread == NULL) {
345 per_thread = AllocatePerIsolateThreadData(thread_id);
348 return per_thread;
354 PerIsolateThreadData* per_thread = NULL;
357 per_thread = thread_data_table_->Lookup(this, thread_id);
359 return per_thread;