pty_buffer        186 src/subshell/common.c static char pty_buffer[PTY_BUFFER_SIZE] = "\0";
pty_buffer        802 src/subshell/common.c             bytes = read (mc_global.tty.subshell_pty, pty_buffer, sizeof (pty_buffer));
pty_buffer        821 src/subshell/common.c                 write_all (STDOUT_FILENO, pty_buffer, bytes);
pty_buffer        824 src/subshell/common.c                 parse_subshell_prompt_string (pty_buffer, bytes);
pty_buffer        857 src/subshell/common.c             bytes = read (STDIN_FILENO, pty_buffer, sizeof (pty_buffer));
pty_buffer        867 src/subshell/common.c                 if (pty_buffer[i] == subshell_switch_key)
pty_buffer        869 src/subshell/common.c                     write_all (mc_global.tty.subshell_pty, pty_buffer, i);
pty_buffer        895 src/subshell/common.c             write_all (mc_global.tty.subshell_pty, pty_buffer, bytes);
pty_buffer        897 src/subshell/common.c             if (pty_buffer[bytes - 1] == '\n' || pty_buffer[bytes - 1] == '\r')
pty_buffer       1574 src/subshell/common.c         bytes = read (mc_global.tty.subshell_pty, pty_buffer, sizeof (pty_buffer));
pty_buffer       1576 src/subshell/common.c             write_all (STDOUT_FILENO, pty_buffer, bytes);
pty_buffer       1614 src/subshell/common.c         bytes = read (mc_global.tty.subshell_pty, pty_buffer, sizeof (pty_buffer));
pty_buffer       1616 src/subshell/common.c         parse_subshell_prompt_string (pty_buffer, bytes);
pty_buffer       1676 src/subshell/common.c         pty_buffer[0] = '\0';