pty_buffer        182 src/subshell/common.c static char pty_buffer[PTY_BUFFER_SIZE] = "\0";
pty_buffer        891 src/subshell/common.c             bytes = read (mc_global.tty.subshell_pty, pty_buffer, sizeof (pty_buffer));
pty_buffer        910 src/subshell/common.c                 write_all (STDOUT_FILENO, pty_buffer, bytes);
pty_buffer        913 src/subshell/common.c                 parse_subshell_prompt_string (pty_buffer, bytes);
pty_buffer        946 src/subshell/common.c             bytes = read (STDIN_FILENO, pty_buffer, sizeof (pty_buffer));
pty_buffer        956 src/subshell/common.c                 if (peek_subshell_switch_key (pty_buffer + i, bytes - i))
pty_buffer        958 src/subshell/common.c                     write_all (mc_global.tty.subshell_pty, pty_buffer, i);
pty_buffer        984 src/subshell/common.c             write_all (mc_global.tty.subshell_pty, pty_buffer, bytes);
pty_buffer        986 src/subshell/common.c             if (pty_buffer[bytes - 1] == '\n' || pty_buffer[bytes - 1] == '\r')
pty_buffer       1807 src/subshell/common.c         bytes = read (mc_global.tty.subshell_pty, pty_buffer, sizeof (pty_buffer));
pty_buffer       1809 src/subshell/common.c             write_all (STDOUT_FILENO, pty_buffer, bytes);
pty_buffer       1847 src/subshell/common.c         bytes = read (mc_global.tty.subshell_pty, pty_buffer, sizeof (pty_buffer));
pty_buffer       1849 src/subshell/common.c         parse_subshell_prompt_string (pty_buffer, bytes);
pty_buffer       1908 src/subshell/common.c         pty_buffer[0] = '\0';