Lines Matching refs:escape_char
475 char escape_char; member
516 if (args->raw_stdin && args->escape_char != '\0') { in stdin_read_thread_loop()
548 if (args->raw_stdin && args->escape_char != '\0') { in stdin_read_thread_loop()
550 if (ch == args->escape_char) { in stdin_read_thread_loop()
567 buffer_ptr[0] = args->escape_char; in stdin_read_thread_loop()
619 static int RemoteShell(bool use_shell_protocol, const std::string& type_arg, char escape_char, in RemoteShell() argument
648 args->escape_char = escape_char; in RemoteShell()
693 char escape_char = '~'; // -e in adb_shell() local
712 escape_char = (strcmp(optarg, "none") == 0) ? 0 : optarg[0]; in adb_shell()
724 escape_char = '~'; in adb_shell()
763 escape_char, tty, in adb_shell()
786 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()