Lines Matching refs:per_thread
473 PerIsolateThreadData* per_thread = nullptr;
476 per_thread = thread_data_table_.Lookup(thread_id);
477 if (per_thread == nullptr) {
481 per_thread = new PerIsolateThreadData(this, thread_id);
482 thread_data_table_.Insert(per_thread);
484 DCHECK(thread_data_table_.Lookup(thread_id) == per_thread);
486 return per_thread;
495 PerIsolateThreadData* per_thread = thread_data_table_.Lookup(thread_id);
496 if (per_thread) {
497 DCHECK(!per_thread->thread_state_);
498 thread_data_table_.Remove(per_thread);
510 PerIsolateThreadData* per_thread = nullptr;
513 per_thread = thread_data_table_.Lookup(thread_id);
515 return per_thread;