Home
last modified time | relevance | path

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

/system/bt/service/
Dmain.cc51 auto command_line = base::CommandLine::ForCurrentProcess(); in main() local
52 if (command_line->HasSwitch(bluetooth::switches::kHelpLong) || in main()
53 command_line->HasSwitch(bluetooth::switches::kHelpShort)) { in main()
Dsettings.cc38 auto command_line = base::CommandLine::ForCurrentProcess(); in Init() local
39 const auto& switches = command_line->GetSwitches(); in Init()
88 if (command_line->GetArgs().size()) { in Init()
/system/core/debuggerd/libdebuggerd/
Dbacktrace.cpp47 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()
Dtombstone.cpp186 if (!thread_info.command_line.empty()) { in dump_thread_info()
187 process_name = thread_info.command_line[0].c_str(); in dump_thread_info()
575 std::vector<std::string> command_line = get_command_line(pid); in engrave_tombstone_ucontext() local
590 .command_line = std::move(command_line), in engrave_tombstone_ucontext()
Dtombstone_proto_to_text.cpp77 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()
Dtombstone_proto.cpp633 for (const auto& arg : main_thread.command_line) { in engrave_tombstone_proto()
/system/security/keystore/
Dkeystore_cli_v2.cpp1084 CommandLine* command_line = CommandLine::ForCurrentProcess(); in main() local
1085 CommandLine::StringVector args = command_line->GetArgs(); in main()
1093 return BrilloPlatformTest(command_line->GetSwitchValueASCII("prefix"), in main()
1094 command_line->HasSwitch("test_for_0_3")); in main()
1098 return GenerateKey(command_line->GetSwitchValueASCII("name"), in main()
1099 securityLevelOption2SecurlityLevel(*command_line), in main()
1100 command_line->HasSwitch("auth_bound")); in main()
1102 return GetCharacteristics(command_line->GetSwitchValueASCII("name")); in main()
1104 return ExportKey(command_line->GetSwitchValueASCII("name")); in main()
1106 return DeleteKey(command_line->GetSwitchValueASCII("name")); in main()
[all …]
/system/core/debuggerd/libdebuggerd/include/libdebuggerd/
Dtypes.h36 std::vector<std::string> command_line; member
/system/bt/service/client/
Dmain.cc1111 auto command_line = base::CommandLine::ForCurrentProcess(); in main() local
1112 if (command_line->HasSwitch(kExecuteLong)) { in main()
1113 command += command_line->GetSwitchValueASCII(kExecuteLong); in main()
1116 if (command_line->HasSwitch(kExecuteShort)) { in main()
1118 command += command_line->GetSwitchValueASCII(kExecuteShort); in main()
/system/core/debuggerd/proto/
Dtombstone.proto20 repeated string command_line = 9; field
/system/core/debuggerd/libdebuggerd/test/
Dtombstone_test.cpp357 .uid = 1, .tid = 3, .thread_name = "some_thread", .pid = 2, .command_line = cmdline}); in TEST_F()
/system/core/debuggerd/
Dcrash_dump.cpp517 info.command_line = get_command_line(g_target_thread); in main()