Searched refs:per_thread (Results 1 – 3 of 3) sorted by relevance
162 Isolate::PerIsolateThreadData* per_thread = in RestoreThread() local164 ASSERT(per_thread != NULL); in RestoreThread()165 ASSERT(per_thread->thread_state() == lazily_archived_thread_state_); in RestoreThread()169 per_thread->set_thread_state(NULL); in RestoreThread()182 Isolate::PerIsolateThreadData* per_thread = in RestoreThread() local184 if (per_thread == NULL || per_thread->thread_state() == NULL) { in RestoreThread()189 ThreadState* state = per_thread->thread_state(); in RestoreThread()200 per_thread->set_thread_state(NULL); in RestoreThread()320 Isolate::PerIsolateThreadData* per_thread = in ArchiveThread() local322 per_thread->set_thread_state(state); in ArchiveThread()
326 PerIsolateThreadData* per_thread = new PerIsolateThreadData(this, thread_id); in AllocatePerIsolateThreadData() local330 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() local343 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[all …]
523 Isolate::PerIsolateThreadData* per_thread = in FreeThreadResources() local525 per_thread->set_stack_limit(thread_local_.real_climit_); in FreeThreadResources()569 Isolate::PerIsolateThreadData* per_thread = in InitThread() local571 uintptr_t stored_limit = per_thread->stack_limit(); in InitThread()