Home
last modified time | relevance | path

Searched refs:per_thread (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/v8/src/
Dv8threads.cc110 Isolate::PerIsolateThreadData* per_thread = in RestoreThread() local
112 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() local
132 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() local
281 per_thread->set_thread_state(state); in ArchiveThread()
Dexecution.cc400 Isolate::PerIsolateThreadData* per_thread = in FreeThreadResources() local
402 per_thread->set_stack_limit(thread_local_.real_climit_); in FreeThreadResources()
446 Isolate::PerIsolateThreadData* per_thread = in InitThread() local
448 uintptr_t stored_limit = per_thread->stack_limit(); in InitThread()
Disolate.cc122 PerIsolateThreadData* per_thread = NULL; in FindOrAllocatePerThreadDataForThisThread() local
125 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() local
147 per_thread = thread_data_table_->Lookup(this, thread_id); in FindPerThreadDataForThread()
149 return per_thread; in FindPerThreadDataForThread()