Home
last modified time | relevance | path

Searched refs:command_line (Results 1 – 7 of 7) sorted by relevance

/aosp14/system/core/debuggerd/libdebuggerd/
H A Dtombstone.cpp67 std::vector<std::string> command_line = get_command_line(pid); in engrave_tombstone_ucontext() local
78 .thread_name = std::move(thread_name), .pid = pid, .command_line = std::move(command_line), in engrave_tombstone_ucontext()
95 .command_line = thread.command_line, in engrave_tombstone_ucontext()
H A Dbacktrace.cpp48 const std::vector<std::string>& command_line) { in dump_process_header() argument
51 if (!command_line.empty()) { in dump_process_header()
52 _LOG(log, logtype::BACKTRACE, "Cmd line: %s\n", android::base::Join(command_line, " ").c_str()); in dump_process_header()
91 dump_process_header(&log, target->second.pid, target->second.command_line); in dump_backtrace()
H A Dtombstone_proto_to_text.cpp81 if (!tombstone.command_line().empty()) { in print_thread_header()
82 process_name = tombstone.command_line()[0].c_str(); in print_thread_header()
83 CB(should_log, "Cmdline: %s", android::base::Join(tombstone.command_line(), " ").c_str()); in print_thread_header()
H A Dtombstone_proto.cpp650 for (const auto& arg : main_thread.command_line) { in engrave_tombstone_proto()
/aosp14/system/core/debuggerd/libdebuggerd/include/libdebuggerd/
H A Dtypes.h37 std::vector<std::string> command_line; member
/aosp14/system/core/debuggerd/proto/
H A Dtombstone.proto29 repeated string command_line = 9; field
/aosp14/system/core/debuggerd/
H A Dcrash_dump.cpp545 info.command_line = get_command_line(g_target_thread); in main()