Lines Matching refs:dump_native_stack
145 bool dump_native_stack = Runtime::Current()->GetDumpNativeStackOnSigQuit(); in DumpForSigQuit() local
146 Dump(os, dump_native_stack); in DumpForSigQuit()
147 DumpUnattachedThreads(os, dump_native_stack && kDumpUnattachedThreadNativeStackForSigQuit); in DumpForSigQuit()
150 static void DumpUnattachedThread(std::ostream& os, pid_t tid, bool dump_native_stack) in DumpUnattachedThread() argument
155 if (dump_native_stack) { in DumpUnattachedThread()
161 void ThreadList::DumpUnattachedThreads(std::ostream& os, bool dump_native_stack) { in DumpUnattachedThreads() argument
179 DumpUnattachedThread(os, tid, dump_native_stack); in DumpUnattachedThreads()
193 DumpCheckpoint(std::ostream* os, bool dump_native_stack) in DumpCheckpoint() argument
198 backtrace_map_(dump_native_stack ? BacktraceMap::Create(getpid()) : nullptr), in DumpCheckpoint()
199 dump_native_stack_(dump_native_stack) { in DumpCheckpoint()
245 void ThreadList::Dump(std::ostream& os, bool dump_native_stack) { in Dump() argument
252 DumpCheckpoint checkpoint(&os, dump_native_stack); in Dump()
263 DumpUnattachedThreads(os, dump_native_stack); in Dump()