Searched refs:dump_native_stack (Results 1 – 4 of 4) sorted by relevance
/art/runtime/ |
D | thread_list.cc | 154 bool dump_native_stack = Runtime::Current()->GetDumpNativeStackOnSigQuit(); in DumpForSigQuit() local 155 Dump(os, dump_native_stack); in DumpForSigQuit() 156 DumpUnattachedThreads(os, dump_native_stack && kDumpUnattachedThreadNativeStackForSigQuit); in DumpForSigQuit() 159 static void DumpUnattachedThread(std::ostream& os, pid_t tid, bool dump_native_stack) in DumpUnattachedThread() argument 164 if (dump_native_stack) { in DumpUnattachedThread() 170 void ThreadList::DumpUnattachedThreads(std::ostream& os, bool dump_native_stack) { in DumpUnattachedThreads() argument 188 DumpUnattachedThread(os, tid, dump_native_stack); in DumpUnattachedThreads() 202 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() [all …]
|
D | thread_list.h | 62 void Dump(std::ostream& os, bool dump_native_stack = true) 196 void DumpUnattachedThreads(std::ostream& os, bool dump_native_stack)
|
D | thread.h | 222 bool dump_native_stack = true, 1395 bool dump_native_stack = true,
|
D | thread.cc | 1362 void Thread::Dump(std::ostream& os, bool dump_native_stack, BacktraceMap* backtrace_map, in Dump() argument 1365 DumpStack(os, dump_native_stack, backtrace_map, force_dump_stack); in Dump() 2169 bool dump_native_stack, in DumpStack() argument 2184 if (dump_native_stack && (dump_for_abort || force_dump_stack || ShouldShowNativeStack(this))) { in DumpStack()
|