pty_buffer        187 src/subshell/common.c static char pty_buffer[PTY_BUFFER_SIZE] = "\0";
pty_buffer        849 src/subshell/common.c             bytes = read (mc_global.tty.subshell_pty, pty_buffer, sizeof (pty_buffer));
pty_buffer        868 src/subshell/common.c                 write_all (STDOUT_FILENO, pty_buffer, bytes);
pty_buffer        871 src/subshell/common.c                 parse_subshell_prompt_string (pty_buffer, bytes);
pty_buffer        904 src/subshell/common.c             bytes = read (STDIN_FILENO, pty_buffer, sizeof (pty_buffer));
pty_buffer        914 src/subshell/common.c                 if (pty_buffer[i] == subshell_switch_key
pty_buffer        916 src/subshell/common.c                         && memcmp (&pty_buffer[i], subshell_switch_key_csi_u,
pty_buffer        920 src/subshell/common.c                     write_all (mc_global.tty.subshell_pty, pty_buffer, i);
pty_buffer        946 src/subshell/common.c             write_all (mc_global.tty.subshell_pty, pty_buffer, bytes);
pty_buffer        948 src/subshell/common.c             if (pty_buffer[bytes - 1] == '\n' || pty_buffer[bytes - 1] == '\r')
pty_buffer       1787 src/subshell/common.c         bytes = read (mc_global.tty.subshell_pty, pty_buffer, sizeof (pty_buffer));
pty_buffer       1789 src/subshell/common.c             write_all (STDOUT_FILENO, pty_buffer, bytes);
pty_buffer       1827 src/subshell/common.c         bytes = read (mc_global.tty.subshell_pty, pty_buffer, sizeof (pty_buffer));
pty_buffer       1829 src/subshell/common.c         parse_subshell_prompt_string (pty_buffer, bytes);
pty_buffer       1888 src/subshell/common.c         pty_buffer[0] = '\0';