Home
last modified time | relevance | path

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

/external/perfetto/test/cts/
Dheapprofd_test_cts.cc100 std::string stop_cmd = "am force-stop " + app_name; in StopApp() local
101 int status = system(stop_cmd.c_str()); in StopApp()
226 std::string stop_cmd = "am force-stop " + app_name; in StopApp() local
227 system(stop_cmd.c_str()); in StopApp()
/external/u-boot/drivers/mmc/
Dstm32_sdmmc2.c416 struct mmc_cmd stop_cmd; in stm32_sdmmc2_send_cmd() local
418 stop_cmd.cmdidx = MMC_CMD_STOP_TRANSMISSION; in stm32_sdmmc2_send_cmd()
419 stop_cmd.cmdarg = 0; in stm32_sdmmc2_send_cmd()
420 stop_cmd.resp_type = MMC_RSP_R1b; in stm32_sdmmc2_send_cmd()
425 stm32_sdmmc2_start_cmd(priv, &stop_cmd, SDMMC_CMD_CMDSTOP); in stm32_sdmmc2_send_cmd()
426 stm32_sdmmc2_end_cmd(priv, &stop_cmd, &ctx); in stm32_sdmmc2_send_cmd()
/external/autotest/client/site_tests/vm_CrosVmStart/
Dvm_CrosVmStart.py66 stop_cmd = ['/usr/bin/crosvm', 'stop', crosvm_socket_path]
67 stop_proc = subprocess.Popen(stop_cmd)
/external/autotest/server/site_tests/enterprise_CFM_CEC/
Denterprise_CFM_CEC.py156 stop_cmd = 'kill $(ps | grep \'cec_service\' | awk \'{print $1}\')'
157 self.chameleon.host.run(stop_cmd)
/external/autotest/server/site_tests/firmware_ECThermal/
Dfirmware_ECThermal.py277 stop_cmd = 'kill -9 %d'
279 self.faft_client.system.run_shell_command(stop_cmd % pid)
/external/autotest/client/site_tests/firmware_TouchMTB/
DtouchbotII_robot_wrapper.py302 def _wait_for_user_input(self, continue_cmd, stop_cmd): argument
304 while user_input not in [continue_cmd, stop_cmd]:
308 (continue_cmd, stop_cmd))
309 if user_input == stop_cmd: