subshell_response_buffer  568 src/subshell/common.c     char subshell_response_buffer[BUF_LARGE];
subshell_response_buffer  608 src/subshell/common.c             bytes = read (command_buffer_pipe[READ], subshell_response_buffer,
subshell_response_buffer  609 src/subshell/common.c                           sizeof (subshell_response_buffer));
subshell_response_buffer  638 src/subshell/common.c         bytes = read (command_buffer_pipe[READ], subshell_response_buffer + response_char_length,
subshell_response_buffer  639 src/subshell/common.c                       sizeof (subshell_response_buffer) - response_char_length);
subshell_response_buffer  641 src/subshell/common.c             || (size_t) bytes == sizeof (subshell_response_buffer) - response_char_length)
subshell_response_buffer  647 src/subshell/common.c             strnlen (subshell_response_buffer + response_char_length, bytes);
subshell_response_buffer  663 src/subshell/common.c         if (subshell_response_buffer[response_char_length - 1] != '\n')
subshell_response_buffer  665 src/subshell/common.c         subshell_response_buffer[--response_char_length] = '\0';
subshell_response_buffer  671 src/subshell/common.c         if (sscanf (subshell_response_buffer, "%d:%d", &bash_version, &cursor_position) != 2)
subshell_response_buffer  676 src/subshell/common.c         if (sscanf (subshell_response_buffer, "%d", &cursor_position) != 1)
subshell_response_buffer  682 src/subshell/common.c     subshell_command = strchr (subshell_response_buffer, '\n');