Home
last modified time | relevance | path

Searched refs:dump_native_stack (Results 1 – 4 of 4) sorted by relevance

/art/runtime/
Dthread_list.cc137 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()
[all …]
Dthread_list.h52 void Dump(std::ostream& os, bool dump_native_stack = true)
164 void DumpUnattachedThreads(std::ostream& os, bool dump_native_stack)
Dthread.h191 bool dump_native_stack = true,
1142 bool dump_native_stack = true,
Dthread.cc955 void Thread::Dump(std::ostream& os, bool dump_native_stack, BacktraceMap* backtrace_map) const { in Dump() argument
957 DumpStack(os, dump_native_stack, backtrace_map); in Dump()
1515 bool dump_native_stack, in DumpStack() argument
1529 if (dump_native_stack && (dump_for_abort || ShouldShowNativeStack(this))) { in DumpStack()