Home | History | Annotate | Download | only in src

Lines Matching refs:thread_data_table_

115 Isolate::ThreadDataTable* Isolate::thread_data_table_ = NULL;
127 per_thread = thread_data_table_->Lookup(this, thread_id);
130 thread_data_table_->Insert(per_thread);
132 DCHECK(thread_data_table_->Lookup(this, thread_id) == per_thread);
145 thread_data_table_->Lookup(this, thread_id);
148 thread_data_table_->Remove(per_thread);
165 per_thread = thread_data_table_->Lookup(this, thread_id);
173 CHECK(thread_data_table_ == NULL);
180 thread_data_table_ = new Isolate::ThreadDataTable();
1794 CHECK(thread_data_table_);
1851 thread_data_table_->RemoveAllThreads(this);
1862 delete thread_data_table_;
1863 thread_data_table_ = NULL;