Home
last modified time | relevance | path

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

/device/google/cuttlefish/host/commands/run_cvd/
Dserver_loop_impl_snapshot.cpp150 Command adb_command(SubtoolPath("adb")); in RunAdbShellCommand() local
153 adb_command.SetWorkingDirectory("/"); in RunAdbShellCommand()
154 adb_command.AddParameter("-s").AddParameter(ins.adb_ip_and_port()); in RunAdbShellCommand()
155 adb_command.AddParameter("wait-for-device"); in RunAdbShellCommand()
157 adb_command.AddParameter("shell"); in RunAdbShellCommand()
159 adb_command.AddParameter(argument); in RunAdbShellCommand()
161 CF_EXPECT_EQ(adb_command.Start().Wait(), 0); in RunAdbShellCommand()