Searched refs:command_line (Results 1 – 8 of 8) sorted by relevance
/system/core/debuggerd/libdebuggerd/ |
D | tombstone.cpp | 67 std::vector<std::string> command_line = get_command_line(pid); in engrave_tombstone_ucontext() local 78 .pid = pid, .command_line = std::move(command_line), .selinux_label = std::move(selinux_label), in engrave_tombstone_ucontext() 93 .command_line = thread.command_line, in engrave_tombstone_ucontext()
|
D | backtrace.cpp | 47 const std::vector<std::string>& command_line) { in dump_process_header() argument 50 if (!command_line.empty()) { in dump_process_header() 51 _LOG(log, logtype::BACKTRACE, "Cmd line: %s\n", android::base::Join(command_line, " ").c_str()); in dump_process_header() 94 dump_process_header(&log, target->second.pid, target->second.command_line); in dump_backtrace()
|
D | tombstone_proto_to_text.cpp | 77 if (!tombstone.command_line().empty()) { in print_thread_header() 78 process_name = tombstone.command_line()[0].c_str(); in print_thread_header() 79 CB(should_log, "Cmdline: %s", android::base::Join(tombstone.command_line(), " ").c_str()); in print_thread_header()
|
D | tombstone_proto.cpp | 670 for (const auto& arg : main_thread.command_line) { in engrave_tombstone_proto()
|
/system/security/keystore/ |
D | keystore_cli_v2.cpp | 1086 CommandLine* command_line = CommandLine::ForCurrentProcess(); in main() local 1087 CommandLine::StringVector args = command_line->GetArgs(); in main() 1095 return BrilloPlatformTest(command_line->GetSwitchValueASCII("prefix"), in main() 1096 command_line->HasSwitch("test_for_0_3")); in main() 1100 return GenerateKey(command_line->GetSwitchValueASCII("name"), in main() 1101 securityLevelOption2SecurlityLevel(*command_line), in main() 1102 command_line->HasSwitch("auth_bound")); in main() 1104 return GetCharacteristics(command_line->GetSwitchValueASCII("name")); in main() 1106 return ExportKey(command_line->GetSwitchValueASCII("name")); in main() 1108 return DeleteKey(command_line->GetSwitchValueASCII("name")); in main() [all …]
|
/system/core/debuggerd/libdebuggerd/include/libdebuggerd/ |
D | types.h | 37 std::vector<std::string> command_line; member
|
/system/core/debuggerd/proto/ |
D | tombstone.proto | 20 repeated string command_line = 9; field
|
/system/core/debuggerd/ |
D | crash_dump.cpp | 529 info.command_line = get_command_line(g_target_thread); in main()
|