Home | History | Annotate | Download | only in runtime

Lines Matching refs:dump_native_stack

155   bool dump_native_stack = Runtime::Current()->GetDumpNativeStackOnSigQuit();
156 Dump(os, dump_native_stack);
157 DumpUnattachedThreads(os, dump_native_stack && kDumpUnattachedThreadNativeStackForSigQuit);
160 static void DumpUnattachedThread(std::ostream& os, pid_t tid, bool dump_native_stack)
166 if (dump_native_stack) {
172 void ThreadList::DumpUnattachedThreads(std::ostream& os, bool dump_native_stack) {
190 DumpUnattachedThread(os, tid, dump_native_stack);
204 DumpCheckpoint(std::ostream* os, bool dump_native_stack)
207 backtrace_map_(dump_native_stack ? BacktraceMap::Create(getpid()) : nullptr),
208 dump_native_stack_(dump_native_stack) {
254 void ThreadList::Dump(std::ostream& os, bool dump_native_stack) {
261 DumpCheckpoint checkpoint(&os, dump_native_stack);
272 DumpUnattachedThreads(os, dump_native_stack);
494 /*dump_native_stack*/ true,