Home
last modified time | relevance | path

Searched refs:command_args (Results 1 – 3 of 3) sorted by relevance

/packages/modules/adb/client/
Dincremental.cpp116 std::vector<std::string> command_args{"package", "install-incremental"}; in start_install() local
117 command_args.insert(command_args.end(), passthrough_args.begin(), passthrough_args.end()); in start_install()
137 command_args.push_back(std::move(file_desc)); in start_install()
141 auto connection_fd = unique_fd(send_abb_exec_command(command_args, &error)); in start_install()
145 android::base::Join(command_args, " ").c_str(), error.c_str()); in start_install()
Dcommandline.h122 unique_fd send_abb_exec_command(const ContainerT& command_args, std::string* error) { in send_abb_exec_command() argument
123 std::string service_string = "abb_exec:" + android::base::Join(command_args, ABB_ARG_DELIMETER); in send_abb_exec_command()
/packages/apps/Car/libs/car-ui-lib/tests/tools/
Dquick_rro.py72 def run_command(command_args): argument
74 result = subprocess.Popen(command_args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
81 err = 'command failed: ' + ' '.join(command_args)