Home
last modified time | relevance | path

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

/system/core/debuggerd/libdebuggerd/
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()
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()
Dtombstone_proto_to_text.cpp119 if (!tombstone.command_line().empty()) { in print_thread_header()
120 process_name = tombstone.command_line()[0].c_str(); in print_thread_header()
121 CB(should_log, "Cmdline: %s", android::base::Join(tombstone.command_line(), " ").c_str()); in print_thread_header()
Dtombstone_proto.cpp750 for (const auto& arg : target_thread.command_line) { in engrave_tombstone_proto()
/system/security/keystore/
Dkeystore_cli_v2.cpp1097 CommandLine* command_line = CommandLine::ForCurrentProcess(); in main() local
1098 CommandLine::StringVector args = command_line->GetArgs(); in main()
1106 return BrilloPlatformTest(command_line->GetSwitchValueASCII("prefix"), in main()
1107 command_line->HasSwitch("test_for_0_3")); in main()
1111 return GenerateKey(command_line->GetSwitchValueASCII("name"), in main()
1112 securityLevelOption2SecurlityLevel(*command_line), in main()
1113 command_line->HasSwitch("auth_bound")); in main()
1115 return GetCharacteristics(command_line->GetSwitchValueASCII("name")); in main()
1117 return ExportKey(command_line->GetSwitchValueASCII("name")); in main()
1119 return DeleteKey(command_line->GetSwitchValueASCII("name")); in main()
[all …]
/system/core/debuggerd/libdebuggerd/include/libdebuggerd/
Dtypes.h37 std::vector<std::string> command_line; member
/system/core/debuggerd/proto/
Dtombstone.proto37 repeated string command_line = 9; field
/system/core/debuggerd/
Dcrash_dump.cpp671 info.command_line = get_command_line(g_target_thread); in main()