Searched refs:dump_native_stack (Results 1 – 4 of 4) sorted by relevance
/art/runtime/ |
D | thread_list.cc | 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() [all …]
|
D | thread_list.h | 62 void Dump(std::ostream& os, bool dump_native_stack = true) 197 void DumpUnattachedThreads(std::ostream& os, bool dump_native_stack)
|
D | thread.h | 223 bool dump_native_stack = true, 1411 bool dump_native_stack = true,
|
D | thread.cc | 1366 void Thread::Dump(std::ostream& os, bool dump_native_stack, BacktraceMap* backtrace_map, in Dump() argument 1369 DumpStack(os, dump_native_stack, backtrace_map, force_dump_stack); in Dump() 2173 bool dump_native_stack, in DumpStack() argument 2188 if (dump_native_stack && (dump_for_abort || force_dump_stack || ShouldShowNativeStack(this))) { in DumpStack()
|