Lines Matching refs:dump_native_stack
137 bool dump_native_stack = Runtime::Current()->GetDumpNativeStackOnSigQuit(); in DumpForSigQuit() local
138 Dump(os, dump_native_stack); in DumpForSigQuit()
139 DumpUnattachedThreads(os, dump_native_stack); in DumpForSigQuit()
142 static void DumpUnattachedThread(std::ostream& os, pid_t tid, bool dump_native_stack) in DumpUnattachedThread() argument
148 if (dump_native_stack && kDumpUnattachedThreadNativeStack) { in DumpUnattachedThread()
154 void ThreadList::DumpUnattachedThreads(std::ostream& os, bool dump_native_stack) { in DumpUnattachedThreads() argument
172 DumpUnattachedThread(os, tid, dump_native_stack); in DumpUnattachedThreads()
186 DumpCheckpoint(std::ostream* os, bool dump_native_stack) in DumpCheckpoint() argument
189 backtrace_map_(dump_native_stack ? BacktraceMap::Create(getpid()) : nullptr), in DumpCheckpoint()
190 dump_native_stack_(dump_native_stack) {} in DumpCheckpoint()
232 void ThreadList::Dump(std::ostream& os, bool dump_native_stack) { in Dump() argument
237 DumpCheckpoint checkpoint(&os, dump_native_stack); in Dump()