Home
last modified time | relevance | path

Searched refs:thread_data_table_ (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/
Disolate.cc124 Isolate::ThreadDataTable* Isolate::thread_data_table_ = NULL; member in v8::internal::Isolate
136 per_thread = thread_data_table_->Lookup(this, thread_id); in FindOrAllocatePerThreadDataForThisThread()
139 thread_data_table_->Insert(per_thread); in FindOrAllocatePerThreadDataForThisThread()
141 DCHECK(thread_data_table_->Lookup(this, thread_id) == per_thread); in FindOrAllocatePerThreadDataForThisThread()
154 thread_data_table_->Lookup(this, thread_id); in DiscardPerThreadDataForThisThread()
157 thread_data_table_->Remove(per_thread); in DiscardPerThreadDataForThisThread()
174 per_thread = thread_data_table_->Lookup(this, thread_id); in FindPerThreadDataForThread()
182 CHECK(thread_data_table_ == NULL); in InitializeOncePerProcess()
189 thread_data_table_ = new Isolate::ThreadDataTable(); in InitializeOncePerProcess()
2147 CHECK(thread_data_table_); in Throw()
[all …]
Disolate.h1238 static ThreadDataTable* thread_data_table_; variable