Home | History | Annotate | Download | only in src

Lines Matching refs:thread_data_table_

127 Isolate::ThreadDataTable* Isolate::thread_data_table_ = NULL;
139 per_thread = thread_data_table_->Lookup(this, thread_id);
142 thread_data_table_->Insert(per_thread);
144 DCHECK(thread_data_table_->Lookup(this, thread_id) == per_thread);
157 thread_data_table_->Lookup(this, thread_id);
160 thread_data_table_->Remove(per_thread);
177 per_thread = thread_data_table_->Lookup(this, thread_id);
185 CHECK(thread_data_table_ == NULL);
192 thread_data_table_ = new Isolate::ThreadDataTable();
2294 CHECK(thread_data_table_);
2351 thread_data_table_->RemoveAllThreads(this);
2362 delete thread_data_table_;
2363 thread_data_table_ = NULL;