Home
last modified time | relevance | path

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

/aosp_15_r20/device/google/cuttlefish/host/example_custom_actions/
Dmain.cpp73 std::string adb_shell_command = in main() local
76 adb_shell_command += " shell cmd statusbar "; in main()
77 adb_shell_command += statusbar_expanded ? "collapse" : "expand-settings"; in main()
80 adb_shell_command += " shell cmd notification set_dnd "; in main()
81 adb_shell_command += dnd_on ? "off" : "on"; in main()
87 if (!adb_shell_command.empty()) { in main()
88 if (system(adb_shell_command.c_str()) != 0) { in main()
89 LOG(ERROR) << "Failed to run command: " << adb_shell_command; in main()
/aosp_15_r20/external/cronet/third_party/libc++/src/utils/
H A Dadb_run.py99 adb_shell_command = (
163 adb_shell_command += (
167 adb_shell_command += (
177 adb_command_line = ["adb", "shell", adb_shell_command]