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

  /external/chromium_org/v8/src/
v8threads.cc 110 Isolate::PerIsolateThreadData* per_thread = local
112 ASSERT(per_thread != NULL);
113 ASSERT(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...]
execution.cc 400 Isolate::PerIsolateThreadData* per_thread = local
402 per_thread->set_stack_limit(thread_local_.real_climit_);
446 Isolate::PerIsolateThreadData* per_thread = local
448 uintptr_t stored_limit = per_thread->stack_limit();
isolate.cc 122 PerIsolateThreadData* per_thread = NULL; local
125 per_thread = thread_data_table_->Lookup(this, thread_id);
126 if (per_thread == NULL) {
127 per_thread = new PerIsolateThreadData(this, thread_id);
128 thread_data_table_->Insert(per_thread);
130 ASSERT(thread_data_table_->Lookup(this, thread_id) == per_thread);
132 return per_thread;
144 PerIsolateThreadData* per_thread = NULL; local
147 per_thread = thread_data_table_->Lookup(this, thread_id);
149 return per_thread;
    [all...]

Completed in 960 milliseconds