Searched refs:command_line (Results 1 – 7 of 7) sorted by relevance
/aosp14/system/core/debuggerd/libdebuggerd/ |
H A D | tombstone.cpp | 67 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 D | backtrace.cpp | 48 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 D | tombstone_proto_to_text.cpp | 81 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 D | tombstone_proto.cpp | 650 for (const auto& arg : main_thread.command_line) { in engrave_tombstone_proto()
|
/aosp14/system/core/debuggerd/libdebuggerd/include/libdebuggerd/ |
H A D | types.h | 37 std::vector<std::string> command_line; member
|
/aosp14/system/core/debuggerd/proto/ |
H A D | tombstone.proto | 29 repeated string command_line = 9; field
|
/aosp14/system/core/debuggerd/ |
H A D | crash_dump.cpp | 545 info.command_line = get_command_line(g_target_thread); in main()
|