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