Searched refs:command_args (Results 1 – 3 of 3) sorted by relevance
/packages/modules/adb/client/ |
D | incremental.cpp | 116 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()
|
D | commandline.h | 122 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/ |
D | quick_rro.py | 72 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)
|