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

/external/chromium_org/v8/src/
H A Dv8threads.cc110 Isolate::PerIsolateThreadData* per_thread = local
112 DCHECK(per_thread != NULL);
113 DCHECK(per_thread->thread_state() == lazily_archived_thread_state_);
117 per_thread->set_thread_state(NULL);
130 Isolate::PerIsolateThreadData* per_thread = local
132 if (per_thread == NULL || per_thread->thread_state() == NULL) {
137 ThreadState* state = per_thread->thread_state();
146 per_thread->set_thread_state(NULL);
279 Isolate::PerIsolateThreadData* per_thread local
[all...]
H A Dexecution.cc429 Isolate::PerIsolateThreadData* per_thread = local
431 per_thread->set_stack_limit(thread_local_.real_climit_);
471 Isolate::PerIsolateThreadData* per_thread = local
473 uintptr_t stored_limit = per_thread->stack_limit();
H A Disolate.cc123 PerIsolateThreadData* per_thread = NULL; local
126 per_thread = thread_data_table_->Lookup(this, thread_id);
127 if (per_thread == NULL) {
128 per_thread = new PerIsolateThreadData(this, thread_id);
129 thread_data_table_->Insert(per_thread);
131 DCHECK(thread_data_table_->Lookup(this, thread_id) == per_thread);
133 return per_thread;
145 PerIsolateThreadData* per_thread = NULL; local
148 per_thread = thread_data_table_->Lookup(this, thread_id);
150 return per_thread;
[all...]

Completed in 1926 milliseconds