fd 56 lib/mcconfig/common.c int fd; fd 73 lib/mcconfig/common.c fd = mc_open (ini_vpath, O_WRONLY | O_TRUNC, 0); fd 76 lib/mcconfig/common.c if (fd == -1) fd 84 lib/mcconfig/common.c (cur_written = mc_write (fd, (const void *) written_data, total_written)) > 0; fd 88 lib/mcconfig/common.c mc_close (fd); fd 260 lib/tty/key.c int fd; fd 570 lib/tty/key.c return (FD_ISSET (s->fd, f) ? 0 : 1); fd 579 lib/tty/key.c const int fd = GPOINTER_TO_INT (b); fd 581 lib/tty/key.c return (s->fd == fd ? 0 : 1); fd 599 lib/tty/key.c FD_SET (p->fd, select_set); fd 600 lib/tty/key.c if (p->fd > top_fd) fd 601 lib/tty/key.c top_fd = p->fd; fd 623 lib/tty/key.c FD_CLR (p->fd, select_set); fd 624 lib/tty/key.c p->callback (p->fd, p->info); fd 1397 lib/tty/key.c add_select_channel (int fd, select_fn callback, void *info) fd 1402 lib/tty/key.c new->fd = fd; fd 1412 lib/tty/key.c delete_select_channel (int fd) fd 1416 lib/tty/key.c p = g_slist_find_custom (select_list, GINT_TO_POINTER (fd), select_cmp_by_fd); fd 86 lib/tty/key.h typedef int (*select_fn) (int fd, void *info); fd 89 lib/tty/key.h void add_select_channel (int fd, select_fn callback, void *info); fd 90 lib/tty/key.h void delete_select_channel (int fd); fd 325 lib/tty/tty.c tty_resize (int fd) fd 334 lib/tty/tty.c return ioctl (fd, TIOCSWINSZ, &tty_size); fd 132 lib/tty/tty.h extern int tty_resize (int fd); fd 836 lib/util.c get_compression_type (int fd, const char *name) fd 842 lib/util.c if (mc_read (fd, (char *) magic, 4) != 4) fd 853 lib/util.c mc_lseek (fd, 8, SEEK_SET); fd 854 lib/util.c if (mc_read (fd, (char *) magic, 2) != 2) fd 884 lib/util.c if (mc_read (fd, (char *) magic + 4, 2) != 2) fd 101 lib/util.h int fd; fd 239 lib/util.h enum compression_type get_compression_type (int fd, const char *name); fd 228 lib/utilunix.c if (!FD_ISSET (ps->fd, fds)) fd 241 lib/utilunix.c read_len = read (ps->fd, ps->buf, buf_len); fd 567 lib/utilunix.c p->out.fd = -1; fd 568 lib/utilunix.c p->err.fd = -1; fd 572 lib/utilunix.c NULL, &p->child_pid, NULL, read_out ? &p->out.fd : NULL, read_err ? &p->err.fd : NULL, fd 626 lib/utilunix.c read_out = p->out.fd >= 0; fd 627 lib/utilunix.c read_err = p->err.fd >= 0; fd 639 lib/utilunix.c FD_SET (p->out.fd, &fds); fd 640 lib/utilunix.c maxfd = p->out.fd; fd 645 lib/utilunix.c FD_SET (p->err.fd, &fds); fd 646 lib/utilunix.c maxfd = MAX (maxfd, p->err.fd); fd 735 lib/utilunix.c if (p->out.fd >= 0) fd 736 lib/utilunix.c res = close (p->out.fd); fd 737 lib/utilunix.c if (p->err.fd >= 0) fd 738 lib/utilunix.c res = close (p->err.fd); fd 1663 lib/vfs/direntry.c vfs_s_get_line_interruptible (struct vfs_class *me, char *buffer, int size, int fd) fd 1676 lib/vfs/direntry.c n = read (fd, &buffer[i], 1); fd 700 lib/vfs/interface.c mc_lseek (int fd, off_t offset, int whence) fd 706 lib/vfs/interface.c if (fd == -1) fd 709 lib/vfs/interface.c vfs = vfs_class_find_by_handle (fd, &fsinfo); fd 737 lib/vfs/interface.c int fd; fd 750 lib/vfs/interface.c fd = g_mkstemp (p2); fd 751 lib/vfs/interface.c if (fd >= 0) fd 756 lib/vfs/interface.c fd = -1; fd 761 lib/vfs/interface.c return fd; fd 191 lib/vfs/utilvfs.c int fd; fd 212 lib/vfs/utilvfs.c fd = mc_mkstemps (pname_vpath, prefix, suffix->str); fd 215 lib/vfs/utilvfs.c return fd; fd 317 lib/vfs/vfs.h off_t mc_lseek (int fd, off_t offset, int whence); fd 326 lib/vfs/vfs.h int mc_fstat (int fd, struct stat *buf); fd 336 lib/vfs/vfs.h int mc_ctl (int fd, int ctlop, void *arg); fd 191 lib/vfs/xdirentry.h int vfs_s_get_line_interruptible (struct vfs_class *me, char *buffer, int size, int fd); fd 74 src/background.c static int background_attention (int fd, void *closure); fd 91 src/background.c register_task_running (file_op_context_t *ctx, pid_t pid, int fd, int to_child, char *info) fd 100 src/background.c new->fd = fd; fd 104 src/background.c add_select_channel (fd, background_attention, ctx); fd 119 src/background.c int fd = p->fd; fd 127 src/background.c return fd; fd 190 src/background.c background_attention (int fd, void *closure) fd 227 src/background.c bytes = read (fd, &routine.pointer, sizeof (routine)); fd 230 src/background.c unregister_task_running (ctx->pid, fd); fd 249 src/background.c if (read (fd, &argc, sizeof (argc)) != sizeof (argc) || fd 250 src/background.c read (fd, &type, sizeof (type)) != sizeof (type) || fd 251 src/background.c read (fd, &have_ctx, sizeof (have_ctx)) != sizeof (have_ctx)) fd 259 src/background.c if (have_ctx != 0 && read (fd, ctx, sizeof (*ctx)) != sizeof (*ctx)) fd 266 src/background.c if (read (fd, &size, sizeof (size)) != sizeof (size)) fd 271 src/background.c if (read (fd, data[i], size) != size) fd 280 src/background.c if (p->fd == fd) fd 494 src/background.c unregister_task_running (pid_t pid, int fd) fd 497 src/background.c delete_select_channel (fd); fd 505 src/background.c int fd; fd 507 src/background.c fd = destroy_task (pid); fd 508 src/background.c if (fd != -1) fd 509 src/background.c delete_select_channel (fd); fd 20 src/background.h int fd; fd 42 src/background.h void unregister_task_running (pid_t pid, int fd); fd 45 src/diffviewer/internal.h int fd; fd 177 src/diffviewer/ydiff.c int fd; fd 180 src/diffviewer/ydiff.c fd = mc_mkstemps (&diff_file_name, "mcdiff", NULL); fd 181 src/diffviewer/ydiff.c if (fd == -1) fd 189 src/diffviewer/ydiff.c return fd; fd 202 src/diffviewer/ydiff.c dview_fdopen (int fd) fd 206 src/diffviewer/ydiff.c if (fd < 0) fd 220 src/diffviewer/ydiff.c fs->fd = fd; fd 263 src/diffviewer/ydiff.c int fd; fd 270 src/diffviewer/ydiff.c fd = open_temp (&fs->data); fd 271 src/diffviewer/ydiff.c if (fd < 0) fd 277 src/diffviewer/ydiff.c fs->fd = fd; fd 296 src/diffviewer/ydiff.c int fd; fd 303 src/diffviewer/ydiff.c fd = open (filename, flags); fd 304 src/diffviewer/ydiff.c if (fd < 0) fd 310 src/diffviewer/ydiff.c fs->fd = fd; fd 350 src/diffviewer/ydiff.c fs->len = read (fs->fd, fs->buf, FILE_READ_BUF); fd 377 src/diffviewer/ydiff.c rv = lseek (fs->fd, 0, SEEK_CUR); fd 393 src/diffviewer/ydiff.c rv = lseek (fs->fd, off, whence); fd 414 src/diffviewer/ydiff.c rv = lseek (fs->fd, 0, SEEK_SET); fd 438 src/diffviewer/ydiff.c rv = write (fs->fd, buf, size); fd 460 src/diffviewer/ydiff.c off = lseek (fs->fd, 0, SEEK_CUR); fd 465 src/diffviewer/ydiff.c rv = ftruncate (fs->fd, off); fd 491 src/diffviewer/ydiff.c rv = close (fs->fd); fd 535 src/diffviewer/ydiff.c fs->fd = fileno (f); fd 1824 src/editor/edit.c FILE *fd; fd 1839 src/editor/edit.c fd = fopen (block_file, "w"); fd 1840 src/editor/edit.c if (fd != NULL) fd 1841 src/editor/edit.c fclose (fd); fd 695 src/editor/editbuffer.c edit_buffer_read_file (edit_buffer_t *buf, int fd, off_t size, fd 718 src/editor/editbuffer.c ret = mc_read (fd, b, data_size); fd 737 src/editor/editbuffer.c sz = mc_read (fd, b, data_size); fd 809 src/editor/editbuffer.c edit_buffer_write_file (edit_buffer_t *buf, int fd) fd 823 src/editor/editbuffer.c sz = mc_write (fd, b, data_size); fd 835 src/editor/editbuffer.c sz = mc_write (fd, b, data_size); fd 849 src/editor/editbuffer.c sz = mc_write (fd, (char *) b + EDIT_BUF_SIZE - data_size, data_size); fd 860 src/editor/editbuffer.c sz = mc_write (fd, b, data_size); fd 63 src/editor/editbuffer.h off_t edit_buffer_read_file (edit_buffer_t * buf, int fd, off_t size, fd 65 src/editor/editbuffer.h off_t edit_buffer_write_file (edit_buffer_t * buf, int fd); fd 135 src/editor/editcmd.c int this_save_mode, rv, fd = -1; fd 163 src/editor/editcmd.c fd = mc_open (real_filename_vpath, O_RDONLY | O_BINARY); fd 164 src/editor/editcmd.c if (fd == -1) fd 169 src/editor/editcmd.c if (fd != -1) fd 170 src/editor/editcmd.c mc_close (fd); fd 225 src/editor/editcmd.c fd = mc_mkstemps (&savename_vpath, saveprefix, NULL); fd 237 src/editor/editcmd.c close (fd); fd 245 src/editor/editcmd.c fd = mc_open (savename_vpath, O_CREAT | O_WRONLY | O_TRUNC | O_BINARY, edit->stat1.st_mode); fd 246 src/editor/editcmd.c if (fd == -1) fd 255 src/editor/editcmd.c mc_close (fd); fd 286 src/editor/editcmd.c filelen = edit_buffer_write_file (&edit->buffer, fd); fd 290 src/editor/editcmd.c mc_close (fd); fd 294 src/editor/editcmd.c if (mc_close (fd) != 0) fd 306 src/editor/editcmd.c mc_close (fd); fd 514 src/filemanager/boxes.c unregister_task_running (tl->pid, tl->fd); fd 1518 src/filemanager/layout.c load_prompt (int fd, void *unused) fd 1520 src/filemanager/layout.c (void) fd; fd 89 src/filemanager/layout.h int load_prompt (int fd, void *unused); fd 1245 src/filemanager/mountlist.c int i, fd; fd 1268 src/filemanager/mountlist.c fd = open (dir, O_RDONLY); fd 1269 src/filemanager/mountlist.c if (fd == -1) fd 1272 src/filemanager/mountlist.c i = disk_get_entry (fd, &de); fd 1274 src/filemanager/mountlist.c close (fd); fd 234 src/subshell/common.c write_all (int fd, const void *buf, size_t count) fd 242 src/subshell/common.c ret = write (fd, (const unsigned char *) buf + written, count); fd 61 src/vfs/cpio/cpio.c #define CPIO_SEEK_SET(super, where) mc_lseek (CPIO_SUPER(super)->fd, CPIO_POS(super) = (where), SEEK_SET) fd 62 src/vfs/cpio/cpio.c #define CPIO_SEEK_CUR(super, where) mc_lseek (CPIO_SUPER(super)->fd, CPIO_POS(super) += (where), SEEK_SET) fd 136 src/vfs/cpio/cpio.c int fd; fd 199 src/vfs/cpio/cpio.c arch->fd = -1; /* for now */ fd 214 src/vfs/cpio/cpio.c if (arch->fd != -1) fd 216 src/vfs/cpio/cpio.c mc_close (arch->fd); fd 217 src/vfs/cpio/cpio.c arch->fd = -1; fd 228 src/vfs/cpio/cpio.c int fd, type; fd 233 src/vfs/cpio/cpio.c fd = mc_open (vpath, O_RDONLY); fd 234 src/vfs/cpio/cpio.c if (fd == -1) fd 244 src/vfs/cpio/cpio.c type = get_compression_type (fd, super->name); fd 246 src/vfs/cpio/cpio.c mc_lseek (fd, 0, SEEK_SET); fd 252 src/vfs/cpio/cpio.c mc_close (fd); fd 255 src/vfs/cpio/cpio.c fd = mc_open (tmp_vpath, O_RDONLY); fd 257 src/vfs/cpio/cpio.c if (fd == -1) fd 267 src/vfs/cpio/cpio.c arch->fd = fd; fd 282 src/vfs/cpio/cpio.c return fd; fd 319 src/vfs/cpio/cpio.c top = mc_read (arch->fd, buf, sizeof (buf)); fd 333 src/vfs/cpio/cpio.c tmp = mc_read (arch->fd, buf, top); fd 523 src/vfs/cpio/cpio.c if (mc_read (arch->fd, inode->linkname, st->st_size) < st->st_size) fd 556 src/vfs/cpio/cpio.c len = mc_read (arch->fd, (char *) &u.buf, HEAD_LENGTH); fd 574 src/vfs/cpio/cpio.c len = mc_read (arch->fd, name, u.buf.c_namesize); fd 627 src/vfs/cpio/cpio.c if (mc_read (arch->fd, u.buf, HEAD_LENGTH) != HEAD_LENGTH) fd 647 src/vfs/cpio/cpio.c len = mc_read (arch->fd, name, hd.c_namesize); fd 698 src/vfs/cpio/cpio.c if (mc_read (arch->fd, u.buf, HEAD_LENGTH) != HEAD_LENGTH) fd 726 src/vfs/cpio/cpio.c len = mc_read (arch->fd, name, hd.c_namesize); fd 848 src/vfs/cpio/cpio.c int fd = CPIO_SUPER (VFS_FILE_HANDLER_SUPER (fh))->fd; fd 852 src/vfs/cpio/cpio.c if (mc_lseek (fd, begin + file->pos, SEEK_SET) != begin + file->pos) fd 857 src/vfs/cpio/cpio.c res = mc_read (fd, buffer, count); fd 67 src/vfs/local/local.c int fd; fd 71 src/vfs/local/local.c fd = open (path, NO_LINEAR (flags), mode); fd 72 src/vfs/local/local.c if (fd == -1) fd 76 src/vfs/local/local.c *local_info = fd; fd 263 src/vfs/local/local.c int fd; fd 269 src/vfs/local/local.c fd = *(int *) data; fd 271 src/vfs/local/local.c while ((n = write (fd, buf, nbyte)) == -1) fd 394 src/vfs/local/local.c int fd; fd 399 src/vfs/local/local.c fd = *(int *) data; fd 401 src/vfs/local/local.c while ((n = read (fd, buffer, count)) == -1) fd 422 src/vfs/local/local.c int fd; fd 427 src/vfs/local/local.c fd = *(int *) data; fd 429 src/vfs/local/local.c return close (fd); fd 446 src/vfs/local/local.c int fd = *(int *) data; fd 448 src/vfs/local/local.c return fstat (fd, buf); fd 456 src/vfs/local/local.c int fd = *(int *) data; fd 458 src/vfs/local/local.c return lseek (fd, offset, whence); fd 299 src/vfs/sfs/sfs.c int fd; fd 301 src/vfs/sfs/sfs.c fd = open (sfs_redirect (vpath), NO_LINEAR (flags), mode); fd 302 src/vfs/sfs/sfs.c if (fd == -1) fd 306 src/vfs/sfs/sfs.c *info = fd; fd 84 src/vfs/sftpfs/internal.c fd_set fd; fd 91 src/vfs/sftpfs/internal.c FD_ZERO (&fd); fd 92 src/vfs/sftpfs/internal.c FD_SET (super->socket_handle, &fd); fd 98 src/vfs/sftpfs/internal.c readfd = &fd; fd 101 src/vfs/sftpfs/internal.c writefd = &fd; fd 108 src/vfs/tar/tar-internal.c r = mc_read (archive->fd, more, left); fd 134 src/vfs/tar/tar-internal.c status = mc_read (archive->fd, archive->record_start->buffer, record_size); fd 179 src/vfs/tar/tar-internal.c offset = mc_lseek (archive->fd, nrec * record_size, SEEK_CUR); fd 232 src/vfs/tar/tar-internal.h int fd; fd 125 src/vfs/tar/tar-sparse.c int fd; /**< File descriptor */ fd 647 src/vfs/tar/tar-sparse.c file.fd = -1; fd 859 src/vfs/tar/tar.c arch->fd = -1; fd 887 src/vfs/tar/tar.c if (arch->fd != -1) fd 889 src/vfs/tar/tar.c mc_close (arch->fd); fd 890 src/vfs/tar/tar.c arch->fd = -1; fd 942 src/vfs/tar/tar.c arch->fd = result; fd 1132 src/vfs/tar/tar.c int fd = TAR_SUPER (fh->ino->super)->fd; fd 1145 src/vfs/tar/tar.c res = mc_read (fd, buffer, (size_t) remain); fd 1176 src/vfs/tar/tar.c int fd = TAR_SUPER (fh->ino->super)->fd; fd 1217 src/vfs/tar/tar.c res = mc_lseek (fd, offset, SEEK_SET); fd 1232 src/vfs/tar/tar.c int fd = TAR_SUPER (VFS_FILE_HANDLER_SUPER (fh))->fd; fd 1247 src/vfs/tar/tar.c if (mc_lseek (fd, begin, SEEK_SET) != begin) fd 1251 src/vfs/tar/tar.c res = mc_read (fd, buffer, count); fd 704 src/vfs/undelfs/undelfs.c int fd; fd 716 src/vfs/undelfs/undelfs.c fd = open (file, O_RDONLY); fd 717 src/vfs/undelfs/undelfs.c if (fd == -1) fd 724 src/vfs/undelfs/undelfs.c close (fd); fd 370 src/viewer/datasource.c mcview_set_datasource_file (WView *view, int fd, const struct stat *st) fd 373 src/viewer/datasource.c view->ds_file_fd = fd; fd 415 src/viewer/datasource.c mcview_set_datasource_vfs_pipe (WView *view, int fd) fd 417 src/viewer/datasource.c g_assert (fd != -1); fd 420 src/viewer/datasource.c view->ds_vfs_pipe = fd; fd 249 src/viewer/internal.h void mcview_set_datasource_file (WView * view, int fd, const struct stat *st); fd 251 src/viewer/internal.h void mcview_set_datasource_vfs_pipe (WView * view, int fd); fd 332 src/viewer/mcviewer.c int fd; fd 338 src/viewer/mcviewer.c fd = mc_open (vpath, O_RDONLY | O_NONBLOCK); fd 339 src/viewer/mcviewer.c if (fd == -1) fd 353 src/viewer/mcviewer.c if (mc_fstat (fd, &st) == -1) fd 355 src/viewer/mcviewer.c mc_close (fd); fd 369 src/viewer/mcviewer.c mc_close (fd); fd 379 src/viewer/mcviewer.c if (st.st_size == 0 || mc_lseek (fd, 0, SEEK_SET) == -1) fd 382 src/viewer/mcviewer.c mcview_set_datasource_vfs_pipe (view, fd); fd 390 src/viewer/mcviewer.c type = get_compression_type (fd, file); fd 413 src/viewer/mcviewer.c mc_close (fd); fd 414 src/viewer/mcviewer.c fd = fd1; fd 415 src/viewer/mcviewer.c mc_fstat (fd, &st); fd 420 src/viewer/mcviewer.c mcview_set_datasource_file (view, fd, &st); fd 102 tests/lib/vfs/tempdir.c int fd; fd 105 tests/lib/vfs/tempdir.c fd = mc_mkstemps (&pname_vpath, "mctest-", NULL); fd 109 tests/lib/vfs/tempdir.c close (fd); fd 110 tests/lib/vfs/tempdir.c ck_assert_int_ne (fd, -1);