Home
last modified time | relevance | path

Searched refs:DebuggerdDumpType (Results 1 – 13 of 13) sorted by relevance

/system/core/debuggerd/include/debuggerd/
Dclient.h29 bool debuggerd_trigger_dump(pid_t pid, enum DebuggerdDumpType dump_type, unsigned int timeout_ms,
32 int dump_backtrace_to_file(pid_t tid, enum DebuggerdDumpType dump_type, int output_fd);
33 int dump_backtrace_to_file_timeout(pid_t tid, enum DebuggerdDumpType dump_type, int timeout_secs,
/system/core/debuggerd/common/include/
Ddump_type.h23 enum DebuggerdDumpType : uint8_t { enum
31 inline std::ostream& operator<<(std::ostream& stream, const DebuggerdDumpType& rhs) {
/system/core/debuggerd/tombstoned/include/tombstoned/
Dtombstoned.h27 android::base::unique_fd* proto_output_fd, DebuggerdDumpType dump_type);
30 android::base::unique_fd* text_output_fd, DebuggerdDumpType dump_type);
/system/core/debuggerd/tombstoned/
Dintercept_manager.h44 DebuggerdDumpType dump_type = kDebuggerdNativeBacktrace;
56 bool GetIntercept(pid_t pid, DebuggerdDumpType dump_type, android::base::unique_fd* out_fd);
Dtombstoned_client.cpp36 DebuggerdDumpType dump_type) { in tombstoned_connect()
41 unique_fd* proto_output_fd, DebuggerdDumpType dump_type) { in tombstoned_connect()
Dintercept_manager.cpp195 bool dump_types_compatible(DebuggerdDumpType interceptor, DebuggerdDumpType dump) { in dump_types_compatible()
207 bool InterceptManager::GetIntercept(pid_t pid, DebuggerdDumpType dump_type, in GetIntercept()
Dtombstoned.cpp94 DebuggerdDumpType crash_type;
163 std::optional<CrashOutput> get_output(DebuggerdDumpType dump_type) { in get_output()
/system/core/debuggerd/
Dprotocol.h48 DebuggerdDumpType dump_type;
63 DebuggerdDumpType dump_type;
Ddebuggerd.cpp64 DebuggerdDumpType dump_type = kDebuggerdTombstone; in main()
Dcrash_dump.cpp238 static void ParseArgs(int argc, char** argv, pid_t* pseudothread_tid, DebuggerdDumpType* dump_type)… in ParseArgs()
256 *dump_type = static_cast<DebuggerdDumpType>(dump_type_int); in ParseArgs()
441 DebuggerdDumpType dump_type; in main()
Ddebuggerd_test.cpp115 InterceptStatus* status, DebuggerdDumpType intercept_type) { in tombstoned_intercept()
180 void StartIntercept(unique_fd* output_fd, DebuggerdDumpType intercept_type = kDebuggerdTombstone);
213 void CrasherTest::StartIntercept(unique_fd* output_fd, DebuggerdDumpType intercept_type) { in StartIntercept()
1293 __attribute__((noinline)) extern "C" bool raise_debugger_signal(DebuggerdDumpType dump_type) { in raise_debugger_signal()
/system/core/debuggerd/client/
Ddebuggerd_client.cpp53 static bool send_signal(pid_t pid, const DebuggerdDumpType dump_type) { in send_signal()
114 bool debuggerd_trigger_dump(pid_t tid, DebuggerdDumpType dump_type, unsigned int timeout_ms, in debuggerd_trigger_dump()
303 int dump_backtrace_to_file(pid_t tid, DebuggerdDumpType dump_type, int fd) { in dump_backtrace_to_file()
307 int dump_backtrace_to_file_timeout(pid_t tid, DebuggerdDumpType dump_type, int timeout_secs, in dump_backtrace_to_file_timeout()
/system/core/debuggerd/handler/
Ddebuggerd_handler.cpp309 static DebuggerdDumpType get_dump_type(const debugger_thread_info* thread_info) { in get_dump_type()