HomeSort by relevance Sort by last modified time
    Searched refs:per_thread (Results 1 - 3 of 3) sorted by null

  /external/v8/src/
v8threads.cc 105 Isolate::PerIsolateThreadData* per_thread = local
107 DCHECK(per_thread != NULL);
108 DCHECK(per_thread->thread_state() == lazily_archived_thread_state_);
112 per_thread->set_thread_state(NULL);
125 Isolate::PerIsolateThreadData* per_thread = local
127 if (per_thread == NULL || per_thread->thread_state() == NULL) {
132 ThreadState* state = per_thread->thread_state();
141 per_thread->set_thread_state(NULL);
274 Isolate::PerIsolateThreadData* per_thread local
    [all...]
execution.cc 369 Isolate::PerIsolateThreadData* per_thread = local
371 per_thread->set_stack_limit(thread_local_.real_climit_);
411 Isolate::PerIsolateThreadData* per_thread = local
413 uintptr_t stored_limit = per_thread->stack_limit();
isolate.cc 124 PerIsolateThreadData* per_thread = NULL; local
127 per_thread = thread_data_table_->Lookup(this, thread_id);
128 if (per_thread == NULL) {
129 per_thread = new PerIsolateThreadData(this, thread_id);
130 thread_data_table_->Insert(per_thread);
132 DCHECK(thread_data_table_->Lookup(this, thread_id) == per_thread);
134 return per_thread;
144 PerIsolateThreadData* per_thread = local
146 if (per_thread) {
147 DCHECK(!per_thread->thread_state_)
162 PerIsolateThreadData* per_thread = NULL; local
    [all...]

Completed in 63 milliseconds