Home | History | Annotate | Download | only in src

Lines Matching refs:per_thread

123   PerIsolateThreadData* per_thread = NULL;
126 per_thread = thread_data_table_->Lookup(this, thread_id);
127 if (per_thread == NULL) {
128 per_thread = new PerIsolateThreadData(this, thread_id);
129 thread_data_table_->Insert(per_thread);
131 DCHECK(thread_data_table_->Lookup(this, thread_id) == per_thread);
133 return per_thread;
145 PerIsolateThreadData* per_thread = NULL;
148 per_thread = thread_data_table_->Lookup(this, thread_id);
150 return per_thread;