Lines Matching refs:escape_char
465 char escape_char; member
506 if (args->raw_stdin && args->escape_char != '\0') { in stdin_read_thread_loop()
538 if (args->raw_stdin && args->escape_char != '\0') { in stdin_read_thread_loop()
540 if (ch == args->escape_char) { in stdin_read_thread_loop()
557 buffer_ptr[0] = args->escape_char; in stdin_read_thread_loop()
609 static int RemoteShell(bool use_shell_protocol, const std::string& type_arg, char escape_char, in RemoteShell() argument
638 args->escape_char = escape_char; in RemoteShell()
689 char escape_char = '~'; // -e in adb_shell() local
707 escape_char = (strcmp(optarg, "none") == 0) ? 0 : optarg[0]; in adb_shell()
719 escape_char = '~'; in adb_shell()
758 escape_char, tty, in adb_shell()
781 return RemoteShell(use_shell_protocol, shell_type_arg, escape_char, command.empty(), in adb_shell()
799 constexpr char escape_char = '~'; // -e in adb_abb() local
807 D("abb -e 0x%x [%*.s]\n", escape_char, static_cast<int>(service_string.size()), in adb_abb()
810 return RemoteShell(use_shell_protocol, shell_type_arg, escape_char, empty_command, in adb_abb()