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