Home | History | Annotate | Download | only in src

Lines Matching refs:per_thread

124   PerIsolateThreadData* per_thread = NULL;
127 per_thread = thread_data_table_->Lookup(this, thread_id);
128 if (per_thread == NULL) {
129 per_thread = new PerIsolateThreadData(this, thread_id);
130 thread_data_table_->Insert(per_thread);
132 DCHECK(thread_data_table_->Lookup(this, thread_id) == per_thread);
134 return per_thread;
144 PerIsolateThreadData* per_thread =
146 if (per_thread) {
147 DCHECK(!per_thread->thread_state_);
148 thread_data_table_->Remove(per_thread);
162 PerIsolateThreadData* per_thread = NULL;
165 per_thread = thread_data_table_->Lookup(this, thread_id);
167 return per_thread;