Lines Matching refs:escape_char
482 char escape_char; member
523 if (args->raw_stdin && args->escape_char != '\0') { in stdin_read_thread_loop()
555 if (args->raw_stdin && args->escape_char != '\0') { in stdin_read_thread_loop()
557 if (ch == args->escape_char) { in stdin_read_thread_loop()
574 buffer_ptr[0] = args->escape_char; in stdin_read_thread_loop()
626 static int RemoteShell(bool use_shell_protocol, const std::string& type_arg, char escape_char, in RemoteShell() argument
655 args->escape_char = escape_char; in RemoteShell()
700 char escape_char = '~'; // -e in adb_shell() local
719 escape_char = (strcmp(optarg, "none") == 0) ? 0 : optarg[0]; in adb_shell()
731 escape_char = '~'; in adb_shell()
770 escape_char, tty, in adb_shell()
793 return RemoteShell(use_shell_protocol, shell_type_arg, escape_char, command.empty(), in adb_shell()
806 constexpr char escape_char = '~'; // -e in adb_abb() local
814 D("abb -e 0x%x [%*.s]\n", escape_char, static_cast<int>(service_string.size()), in adb_abb()
817 return RemoteShell(use_shell_protocol, shell_type_arg, escape_char, empty_command, in adb_abb()