Home | History | Annotate | Download | only in runtime

Lines Matching refs:Dump

68 // Whether we should try to dump the native stack of unattached threads. See commit ed8b723 for
151 suspend_all_historam_.PrintConfidenceIntervals(os, 0.99, data); // Dump time to suspend.
155 Dump(os, dump_native_stack);
196 // Dump checkpoint timeout in milliseconds. Larger amount on the target, since the device could be
200 // A closure used by Thread::Dump.
217 thread->Dump(local_os, dump_native_stack_, backtrace_map_.get());
234 << "Unexpected time out during dump checkpoint.";
245 // Whether we should dump the native stack.
249 void ThreadList::Dump(std::ostream& os, bool dump_native_stack) {
259 // Use SOA to prevent deadlocks if multiple threads are calling Dump() at the same time.
284 // Attempt to rectify locks so that we dump thread list with required locks before exiting.
289 Locks::mutator_lock_->Dump(ss);
291 runtime->GetThreadList()->Dump(ss);
465 Locks::mutator_lock_->Dump(ss);
468 // Some threads in 'runnable_thread_ids' are probably stuck. Try to dump their stacks.
469 // Avoid using ThreadList::Dump() initially because it is likely to get stuck as well.
481 // Assume it's stuck and safe to dump its stack.
482 thread->Dump(LOG_STREAM(FATAL_WITHOUT_ABORT),
491 // Now use ThreadList::Dump() to dump more threads, noting it may get stuck.
492 Dump(LOG_STREAM(FATAL_WITHOUT_ABORT));
1201 // dump event is pending (assuming SignalCatcher was resumed for
1392 self->ShortDump(oss); // We don't hold the mutator_lock_ yet and so cannot call Dump.