bytes 104 lib/tty/win.c int bytes, i, j, cols = 0; bytes 115 lib/tty/win.c bytes = (y2 - y1) * (COLS + 1) + 1; /* *should* be the number of bytes read */ bytes 117 lib/tty/win.c k = g_malloc (bytes); bytes 125 lib/tty/win.c if (j < bytes) bytes 132 lib/tty/win.c if (j < bytes) bytes 215 src/background.c ssize_t bytes, ret; bytes 223 src/background.c bytes = read (fd, &routine.pointer, sizeof (routine)); bytes 224 src/background.c if (bytes == -1 || (size_t) bytes < (sizeof (routine))) bytes 91 src/cons.handler.c unsigned short bytes = 0; bytes 118 src/cons.handler.c ret = read (pipefd2[0], &bytes, 2); bytes 121 src/cons.handler.c for (i = 0; i < bytes; i++) bytes 94 src/consaver/cons.saver.c unsigned short bytes; bytes 119 src/consaver/cons.saver.c bytes = lc_index; bytes 121 src/consaver/cons.saver.c if (write (1, &bytes, 2) != 2) bytes 123 src/consaver/cons.saver.c if (bytes == 0) bytes 522 src/subshell/common.c ssize_t bytes; bytes 554 src/subshell/common.c bytes = read (command_buffer_pipe[READ], subshell_command_buffer, bytes 556 src/subshell/common.c (void) bytes; bytes 582 src/subshell/common.c bytes = bytes 584 src/subshell/common.c if (bytes == 0 || bytes == sizeof (subshell_command_buffer)) bytes 587 src/subshell/common.c command_buffer_char_length = bytes - 1; bytes 614 src/subshell/common.c bytes = bytes 616 src/subshell/common.c if (bytes == 0) bytes 619 src/subshell/common.c subshell_cursor_buffer[bytes - 1] = '\0'; bytes 701 src/subshell/common.c parse_subshell_prompt_string (const char *buffer, int bytes) bytes 715 src/subshell/common.c for (i = 0; i < bytes; i++) bytes 743 src/subshell/common.c int bytes; /* For the return value from 'read' */ bytes 800 src/subshell/common.c bytes = read (mc_global.tty.subshell_pty, pty_buffer, sizeof (pty_buffer)); bytes 803 src/subshell/common.c if (bytes == -1 && errno == EIO && !subshell_alive) bytes 806 src/subshell/common.c if (bytes <= 0) bytes 819 src/subshell/common.c write_all (STDOUT_FILENO, pty_buffer, bytes); bytes 822 src/subshell/common.c parse_subshell_prompt_string (pty_buffer, bytes); bytes 828 src/subshell/common.c bytes = read (subshell_pipe[READ], subshell_cwd, sizeof (subshell_cwd)); bytes 829 src/subshell/common.c if (bytes <= 0) bytes 837 src/subshell/common.c subshell_cwd[bytes - 1] = '\0'; /* Squash the final '\n' */ bytes 855 src/subshell/common.c bytes = read (STDIN_FILENO, pty_buffer, sizeof (pty_buffer)); bytes 856 src/subshell/common.c if (bytes <= 0) bytes 864 src/subshell/common.c for (i = 0; i < bytes; ++i) bytes 893 src/subshell/common.c write_all (mc_global.tty.subshell_pty, pty_buffer, bytes); bytes 895 src/subshell/common.c if (pty_buffer[bytes - 1] == '\n' || pty_buffer[bytes - 1] == '\r') bytes 1541 src/subshell/common.c ssize_t bytes = 0; bytes 1572 src/subshell/common.c bytes = read (mc_global.tty.subshell_pty, pty_buffer, sizeof (pty_buffer)); bytes 1574 src/subshell/common.c write_all (STDOUT_FILENO, pty_buffer, bytes); bytes 1586 src/subshell/common.c ssize_t bytes = 0; bytes 1613 src/subshell/common.c bytes = read (mc_global.tty.subshell_pty, pty_buffer, sizeof (pty_buffer)); bytes 1620 src/subshell/common.c parse_subshell_prompt_string (pty_buffer, bytes); bytes 1627 src/subshell/common.c return (rc != 0 || bytes != 0); bytes 316 src/viewer/display.c int bytes; bytes 319 src/viewer/display.c bytes = 4; bytes 321 src/viewer/display.c bytes = 4 * ((cols - 9) / ((cols <= 80) ? 17 : 18)); bytes 323 src/viewer/display.c g_assert (bytes != 0); bytes 325 src/viewer/display.c view->bytes_per_line = bytes; bytes 153 src/viewer/hex.c int bytes; /* Number of bytes already printed on the line */ bytes 168 src/viewer/hex.c for (bytes = 0; bytes < view->bytes_per_line; bytes++, from++) bytes 291 src/viewer/hex.c if (bytes != view->bytes_per_line - 1) bytes 300 src/viewer/hex.c if (bytes % 4 == 3) bytes 348 src/viewer/hex.c if (text_start + bytes < r->cols) bytes 350 src/viewer/hex.c widget_gotoyx (view, r->y + row, r->x + text_start + bytes); bytes 363 src/viewer/hex.c view->cursor_col = text_start + bytes; bytes 75 src/viewer/move.c off_t bytes = view->bytes_per_line; bytes 80 src/viewer/move.c displaysize = view->data_area.lines * bytes; bytes 82 src/viewer/move.c topleft = mcview_offset_rounddown (cursor, bytes) - (displaysize - bytes); bytes 84 src/viewer/move.c topleft = mcview_offset_rounddown (cursor, bytes); bytes 118 src/viewer/move.c off_t bytes; bytes 120 src/viewer/move.c bytes = lines * view->bytes_per_line; bytes 122 src/viewer/move.c if (view->hex_cursor < bytes) bytes 126 src/viewer/move.c view->hex_cursor -= bytes; bytes 129 src/viewer/move.c view->dpy_start = DOZ (view->dpy_start, bytes);