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

  /external/chromium_org/v8/src/
v8threads.cc 166 Isolate::PerIsolateThreadData* per_thread = local
168 ASSERT(per_thread != NULL);
169 ASSERT(per_thread->thread_state() == lazily_archived_thread_state_);
173 per_thread->set_thread_state(NULL);
186 Isolate::PerIsolateThreadData* per_thread = local
188 if (per_thread == NULL || per_thread->thread_state() == NULL) {
193 ThreadState* state = per_thread->thread_state();
204 per_thread->set_thread_state(NULL);
341 Isolate::PerIsolateThreadData* per_thread local
    [all...]
isolate.cc 353 PerIsolateThreadData* per_thread = new PerIsolateThreadData(this, thread_id); local
357 thread_data_table_->Insert(per_thread);
358 ASSERT(thread_data_table_->Lookup(this, thread_id) == per_thread);
360 return per_thread;
367 PerIsolateThreadData* per_thread = NULL; local
370 per_thread = thread_data_table_->Lookup(this, thread_id);
371 if (per_thread == NULL) {
372 per_thread = AllocatePerIsolateThreadData(thread_id);
375 return per_thread;
387 PerIsolateThreadData* per_thread = NULL local
    [all...]
execution.cc 539 Isolate::PerIsolateThreadData* per_thread = local
541 per_thread->set_stack_limit(thread_local_.real_climit_);
585 Isolate::PerIsolateThreadData* per_thread = local
587 uintptr_t stored_limit = per_thread->stack_limit();
  /external/v8/src/
v8threads.cc 162 Isolate::PerIsolateThreadData* per_thread = local
164 ASSERT(per_thread != NULL);
165 ASSERT(per_thread->thread_state() == lazily_archived_thread_state_);
169 per_thread->set_thread_state(NULL);
182 Isolate::PerIsolateThreadData* per_thread = local
184 if (per_thread == NULL || per_thread->thread_state() == NULL) {
189 ThreadState* state = per_thread->thread_state();
200 per_thread->set_thread_state(NULL);
320 Isolate::PerIsolateThreadData* per_thread local
    [all...]
isolate.cc 326 PerIsolateThreadData* per_thread = new PerIsolateThreadData(this, thread_id); local
330 thread_data_table_->Insert(per_thread);
331 ASSERT(thread_data_table_->Lookup(this, thread_id) == per_thread);
333 return per_thread;
340 PerIsolateThreadData* per_thread = NULL; local
343 per_thread = thread_data_table_->Lookup(this, thread_id);
344 if (per_thread == NULL) {
345 per_thread = AllocatePerIsolateThreadData(thread_id);
348 return per_thread;
354 PerIsolateThreadData* per_thread = NULL local
    [all...]
execution.cc 523 Isolate::PerIsolateThreadData* per_thread = local
525 per_thread->set_stack_limit(thread_local_.real_climit_);
569 Isolate::PerIsolateThreadData* per_thread = local
571 uintptr_t stored_limit = per_thread->stack_limit();

Completed in 105 milliseconds