Searched refs:per_thread (Results 1 – 3 of 3) sorted by relevance
110 Isolate::PerIsolateThreadData* per_thread = in RestoreThread() local112 ASSERT(per_thread != NULL); in RestoreThread()113 ASSERT(per_thread->thread_state() == lazily_archived_thread_state_); in RestoreThread()117 per_thread->set_thread_state(NULL); in RestoreThread()130 Isolate::PerIsolateThreadData* per_thread = in RestoreThread() local132 if (per_thread == NULL || per_thread->thread_state() == NULL) { in RestoreThread()137 ThreadState* state = per_thread->thread_state(); in RestoreThread()146 per_thread->set_thread_state(NULL); in RestoreThread()279 Isolate::PerIsolateThreadData* per_thread = in ArchiveThread() local281 per_thread->set_thread_state(state); in ArchiveThread()
400 Isolate::PerIsolateThreadData* per_thread = in FreeThreadResources() local402 per_thread->set_stack_limit(thread_local_.real_climit_); in FreeThreadResources()446 Isolate::PerIsolateThreadData* per_thread = in InitThread() local448 uintptr_t stored_limit = per_thread->stack_limit(); in InitThread()
122 PerIsolateThreadData* per_thread = NULL; in FindOrAllocatePerThreadDataForThisThread() local125 per_thread = thread_data_table_->Lookup(this, thread_id); in FindOrAllocatePerThreadDataForThisThread()126 if (per_thread == NULL) { in FindOrAllocatePerThreadDataForThisThread()127 per_thread = new PerIsolateThreadData(this, thread_id); in FindOrAllocatePerThreadDataForThisThread()128 thread_data_table_->Insert(per_thread); in FindOrAllocatePerThreadDataForThisThread()130 ASSERT(thread_data_table_->Lookup(this, thread_id) == per_thread); in FindOrAllocatePerThreadDataForThisThread()132 return per_thread; in FindOrAllocatePerThreadDataForThisThread()144 PerIsolateThreadData* per_thread = NULL; in FindPerThreadDataForThread() local147 per_thread = thread_data_table_->Lookup(this, thread_id); in FindPerThreadDataForThread()149 return per_thread; in FindPerThreadDataForThread()