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 568 lib/tty/key.c return (FD_ISSET (s->fd, f) ? 0 : 1); fd 577 lib/tty/key.c const int fd = GPOINTER_TO_INT (b); fd 579 lib/tty/key.c return (s->fd == fd ? 0 : 1); fd 597 lib/tty/key.c FD_SET (p->fd, select_set); fd 598 lib/tty/key.c if (p->fd > top_fd) fd 599 lib/tty/key.c top_fd = p->fd; fd 621 lib/tty/key.c FD_CLR (p->fd, select_set); fd 622 lib/tty/key.c p->callback (p->fd, p->info); fd 1394 lib/tty/key.c add_select_channel (int fd, select_fn callback, void *info) fd 1399 lib/tty/key.c new->fd = fd; fd 1409 lib/tty/key.c delete_select_channel (int fd) fd 1413 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 336 lib/tty/tty.c tty_resize (int fd) fd 345 lib/tty/tty.c return ioctl (fd, TIOCSWINSZ, &tty_size); fd 130 lib/tty/tty.h extern int tty_resize (int fd); fd 725 lib/util.c get_compression_type (int fd, const char *name) fd 731 lib/util.c if (mc_read (fd, (char *) magic, 4) != 4) fd 742 lib/util.c mc_lseek (fd, 8, SEEK_SET); fd 743 lib/util.c if (mc_read (fd, (char *) magic, 2) != 2) fd 773 lib/util.c if (mc_read (fd, (char *) magic + 4, 2) != 2) fd 117 lib/util.h int fd; fd 249 lib/util.h enum compression_type get_compression_type (int fd, const char *name); fd 225 lib/utilunix.c if (!FD_ISSET (ps->fd, fds)) fd 238 lib/utilunix.c read_len = read (ps->fd, ps->buf, buf_len); fd 565 lib/utilunix.c p->out.fd = -1; fd 566 lib/utilunix.c p->err.fd = -1; fd 570 lib/utilunix.c NULL, &p->child_pid, NULL, read_out ? &p->out.fd : NULL, fd 571 lib/utilunix.c read_err ? &p->err.fd : NULL, error)) fd 624 lib/utilunix.c read_out = p->out.fd >= 0; fd 625 lib/utilunix.c read_err = p->err.fd >= 0; fd 637 lib/utilunix.c FD_SET (p->out.fd, &fds); fd 638 lib/utilunix.c maxfd = p->out.fd; fd 643 lib/utilunix.c FD_SET (p->err.fd, &fds); fd 644 lib/utilunix.c maxfd = MAX (maxfd, p->err.fd); fd 733 lib/utilunix.c if (p->out.fd >= 0) fd 734 lib/utilunix.c res = close (p->out.fd); fd 735 lib/utilunix.c if (p->err.fd >= 0) fd 736 lib/utilunix.c res = close (p->err.fd); fd 1660 lib/vfs/direntry.c vfs_s_get_line_interruptible (struct vfs_class *me, char *buffer, int size, int fd) fd 1673 lib/vfs/direntry.c n = read (fd, &buffer[i], 1); fd 681 lib/vfs/interface.c mc_lseek (int fd, off_t offset, int whence) fd 687 lib/vfs/interface.c if (fd == -1) fd 690 lib/vfs/interface.c vfs = vfs_class_find_by_handle (fd, &fsinfo); fd 718 lib/vfs/interface.c int fd; fd 731 lib/vfs/interface.c fd = g_mkstemp (p2); fd 732 lib/vfs/interface.c if (fd >= 0) fd 737 lib/vfs/interface.c fd = -1; fd 742 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 313 lib/vfs/vfs.h off_t mc_lseek (int fd, off_t offset, int whence); fd 322 lib/vfs/vfs.h int mc_fstat (int fd, struct stat *buf); fd 332 lib/vfs/vfs.h int mc_ctl (int fd, int ctlop, void *arg); fd 192 lib/vfs/xdirentry.h int vfs_s_get_line_interruptible (struct vfs_class *me, char *buffer, int size, int fd); fd 72 src/background.c static int background_attention (int fd, void *closure); fd 89 src/background.c register_task_running (file_op_context_t *ctx, pid_t pid, int fd, int to_child, char *info) fd 98 src/background.c new->fd = fd; fd 102 src/background.c add_select_channel (fd, background_attention, ctx); fd 117 src/background.c int fd = p->fd; fd 125 src/background.c return fd; fd 188 src/background.c background_attention (int fd, void *closure) fd 225 src/background.c bytes = read (fd, &routine.pointer, sizeof (routine)); fd 228 src/background.c unregister_task_running (ctx->pid, fd); fd 247 src/background.c if (read (fd, &argc, sizeof (argc)) != sizeof (argc) fd 248 src/background.c || read (fd, &type, sizeof (type)) != sizeof (type) fd 249 src/background.c || read (fd, &have_ctx, sizeof (have_ctx)) != sizeof (have_ctx)) fd 257 src/background.c if (have_ctx != 0 && read (fd, ctx, sizeof (*ctx)) != sizeof (*ctx)) fd 264 src/background.c if (read (fd, &size, sizeof (size)) != sizeof (size)) fd 269 src/background.c if (read (fd, data[i], size) != size) fd 278 src/background.c if (p->fd == fd) fd 492 src/background.c unregister_task_running (pid_t pid, int fd) fd 495 src/background.c delete_select_channel (fd); fd 503 src/background.c int fd; fd 505 src/background.c fd = destroy_task (pid); fd 506 src/background.c if (fd != -1) fd 507 src/background.c delete_select_channel (fd); fd 21 src/background.h int fd; fd 43 src/background.h void unregister_task_running (pid_t pid, int fd); fd 45 src/diffviewer/internal.h int fd; fd 172 src/diffviewer/ydiff.c int fd; fd 175 src/diffviewer/ydiff.c fd = mc_mkstemps (&diff_file_name, "mcdiff", NULL); fd 176 src/diffviewer/ydiff.c if (fd == -1) fd 184 src/diffviewer/ydiff.c return fd; fd 197 src/diffviewer/ydiff.c dview_fdopen (int fd) fd 201 src/diffviewer/ydiff.c if (fd < 0) fd 215 src/diffviewer/ydiff.c fs->fd = fd; fd 258 src/diffviewer/ydiff.c int fd; fd 265 src/diffviewer/ydiff.c fd = open_temp (&fs->data); fd 266 src/diffviewer/ydiff.c if (fd < 0) fd 272 src/diffviewer/ydiff.c fs->fd = fd; fd 291 src/diffviewer/ydiff.c int fd; fd 298 src/diffviewer/ydiff.c fd = open (filename, flags); fd 299 src/diffviewer/ydiff.c if (fd < 0) fd 305 src/diffviewer/ydiff.c fs->fd = fd; fd 345 src/diffviewer/ydiff.c fs->len = read (fs->fd, fs->buf, FILE_READ_BUF); fd 372 src/diffviewer/ydiff.c rv = lseek (fs->fd, 0, SEEK_CUR); fd 388 src/diffviewer/ydiff.c rv = lseek (fs->fd, off, whence); fd 409 src/diffviewer/ydiff.c rv = lseek (fs->fd, 0, SEEK_SET); fd 433 src/diffviewer/ydiff.c rv = write (fs->fd, buf, size); fd 455 src/diffviewer/ydiff.c off = lseek (fs->fd, 0, SEEK_CUR); fd 460 src/diffviewer/ydiff.c rv = ftruncate (fs->fd, off); fd 486 src/diffviewer/ydiff.c rv = close (fs->fd); fd 530 src/diffviewer/ydiff.c fs->fd = fileno (f); fd 1794 src/editor/edit.c FILE *fd; fd 1809 src/editor/edit.c fd = fopen (block_file, "w"); fd 1810 src/editor/edit.c if (fd != NULL) fd 1811 src/editor/edit.c fclose (fd); fd 693 src/editor/editbuffer.c edit_buffer_read_file (edit_buffer_t *buf, int fd, off_t size, fd 716 src/editor/editbuffer.c ret = mc_read (fd, b, data_size); fd 735 src/editor/editbuffer.c sz = mc_read (fd, b, data_size); fd 807 src/editor/editbuffer.c edit_buffer_write_file (edit_buffer_t *buf, int fd) fd 821 src/editor/editbuffer.c sz = mc_write (fd, b, data_size); fd 833 src/editor/editbuffer.c sz = mc_write (fd, b, data_size); fd 847 src/editor/editbuffer.c sz = mc_write (fd, (char *) b + EDIT_BUF_SIZE - data_size, data_size); fd 858 src/editor/editbuffer.c sz = mc_write (fd, b, data_size); fd 60 src/editor/editbuffer.h off_t edit_buffer_read_file (edit_buffer_t *buf, int fd, off_t size, fd 62 src/editor/editbuffer.h off_t edit_buffer_write_file (edit_buffer_t *buf, int fd); fd 130 src/editor/editcmd.c int this_save_mode, rv, fd = -1; fd 158 src/editor/editcmd.c fd = mc_open (real_filename_vpath, O_RDONLY | O_BINARY); fd 159 src/editor/editcmd.c if (fd == -1) fd 164 src/editor/editcmd.c if (fd != -1) fd 165 src/editor/editcmd.c mc_close (fd); fd 220 src/editor/editcmd.c fd = mc_mkstemps (&savename_vpath, saveprefix, NULL); fd 232 src/editor/editcmd.c close (fd); fd 240 src/editor/editcmd.c fd = mc_open (savename_vpath, O_CREAT | O_WRONLY | O_TRUNC | O_BINARY, edit->stat1.st_mode); fd 241 src/editor/editcmd.c if (fd == -1) fd 250 src/editor/editcmd.c mc_close (fd); fd 277 src/editor/editcmd.c filelen = edit_buffer_write_file (&edit->buffer, fd); fd 281 src/editor/editcmd.c mc_close (fd); fd 285 src/editor/editcmd.c if (mc_close (fd) != 0) fd 297 src/editor/editcmd.c mc_close (fd); fd 506 src/filemanager/boxes.c unregister_task_running (tl->pid, tl->fd); fd 1513 src/filemanager/layout.c load_prompt (int fd, void *unused) fd 1515 src/filemanager/layout.c (void) fd; fd 89 src/filemanager/layout.h int load_prompt (int fd, void *unused); fd 1227 src/filemanager/mountlist.c int i, fd; fd 1250 src/filemanager/mountlist.c fd = open (dir, O_RDONLY); fd 1251 src/filemanager/mountlist.c if (fd == -1) fd 1254 src/filemanager/mountlist.c i = disk_get_entry (fd, &de); fd 1256 src/filemanager/mountlist.c close (fd); fd 227 src/subshell/common.c write_all (int fd, const void *buf, size_t count) fd 235 src/subshell/common.c ret = write (fd, (const unsigned char *) buf + written, count); fd 62 src/vfs/cpio/cpio.c mc_lseek (CPIO_SUPER (super)->fd, CPIO_POS (super) = (where), SEEK_SET) fd 64 src/vfs/cpio/cpio.c mc_lseek (CPIO_SUPER (super)->fd, CPIO_POS (super) += (where), SEEK_SET) fd 138 src/vfs/cpio/cpio.c int fd; fd 201 src/vfs/cpio/cpio.c arch->fd = -1; // for now fd 216 src/vfs/cpio/cpio.c if (arch->fd != -1) fd 218 src/vfs/cpio/cpio.c mc_close (arch->fd); fd 219 src/vfs/cpio/cpio.c arch->fd = -1; fd 230 src/vfs/cpio/cpio.c int fd, type; fd 235 src/vfs/cpio/cpio.c fd = mc_open (vpath, O_RDONLY); fd 236 src/vfs/cpio/cpio.c if (fd == -1) fd 246 src/vfs/cpio/cpio.c type = get_compression_type (fd, super->name); fd 248 src/vfs/cpio/cpio.c mc_lseek (fd, 0, SEEK_SET); fd 254 src/vfs/cpio/cpio.c mc_close (fd); fd 257 src/vfs/cpio/cpio.c fd = mc_open (tmp_vpath, O_RDONLY); fd 259 src/vfs/cpio/cpio.c if (fd == -1) fd 269 src/vfs/cpio/cpio.c arch->fd = fd; fd 284 src/vfs/cpio/cpio.c return fd; fd 321 src/vfs/cpio/cpio.c top = mc_read (arch->fd, buf, sizeof (buf)); fd 335 src/vfs/cpio/cpio.c tmp = mc_read (arch->fd, buf, top); fd 526 src/vfs/cpio/cpio.c if (mc_read (arch->fd, inode->linkname, st->st_size) < st->st_size) fd 559 src/vfs/cpio/cpio.c len = mc_read (arch->fd, (char *) &u.buf, HEAD_LENGTH); fd 577 src/vfs/cpio/cpio.c len = mc_read (arch->fd, name, u.buf.c_namesize); fd 630 src/vfs/cpio/cpio.c if (mc_read (arch->fd, u.buf, HEAD_LENGTH) != HEAD_LENGTH) fd 651 src/vfs/cpio/cpio.c len = mc_read (arch->fd, name, hd.c_namesize); fd 702 src/vfs/cpio/cpio.c if (mc_read (arch->fd, u.buf, HEAD_LENGTH) != HEAD_LENGTH) fd 730 src/vfs/cpio/cpio.c len = mc_read (arch->fd, name, hd.c_namesize); fd 851 src/vfs/cpio/cpio.c int fd = CPIO_SUPER (VFS_FILE_HANDLER_SUPER (fh))->fd; fd 855 src/vfs/cpio/cpio.c if (mc_lseek (fd, begin + file->pos, SEEK_SET) != begin + file->pos) fd 860 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 269 src/vfs/local/local.c int fd; fd 275 src/vfs/local/local.c fd = *(int *) data; fd 277 src/vfs/local/local.c while ((n = write (fd, buf, nbyte)) == -1) fd 400 src/vfs/local/local.c int fd; fd 405 src/vfs/local/local.c fd = *(int *) data; fd 407 src/vfs/local/local.c while ((n = read (fd, buffer, count)) == -1) fd 428 src/vfs/local/local.c int fd; fd 433 src/vfs/local/local.c fd = *(int *) data; fd 435 src/vfs/local/local.c return close (fd); fd 452 src/vfs/local/local.c int fd = *(int *) data; fd 454 src/vfs/local/local.c return fstat (fd, buf); fd 462 src/vfs/local/local.c int fd = *(int *) data; fd 464 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 97 src/vfs/tar/tar-internal.c r = mc_read (archive->fd, more, left); fd 123 src/vfs/tar/tar-internal.c status = mc_read (archive->fd, archive->record_start->buffer, record_size); fd 168 src/vfs/tar/tar-internal.c offset = mc_lseek (archive->fd, nrec * record_size, SEEK_CUR); fd 227 src/vfs/tar/tar-internal.h int fd; fd 124 src/vfs/tar/tar-sparse.c int fd; // File descriptor fd 640 src/vfs/tar/tar-sparse.c file.fd = -1; fd 844 src/vfs/tar/tar.c arch->fd = -1; fd 872 src/vfs/tar/tar.c if (arch->fd != -1) fd 874 src/vfs/tar/tar.c mc_close (arch->fd); fd 875 src/vfs/tar/tar.c arch->fd = -1; fd 927 src/vfs/tar/tar.c arch->fd = result; fd 1117 src/vfs/tar/tar.c int fd = TAR_SUPER (fh->ino->super)->fd; fd 1130 src/vfs/tar/tar.c res = mc_read (fd, buffer, (size_t) remain); fd 1161 src/vfs/tar/tar.c int fd = TAR_SUPER (fh->ino->super)->fd; fd 1202 src/vfs/tar/tar.c res = mc_lseek (fd, offset, SEEK_SET); fd 1217 src/vfs/tar/tar.c int fd = TAR_SUPER (VFS_FILE_HANDLER_SUPER (fh))->fd; fd 1232 src/vfs/tar/tar.c if (mc_lseek (fd, begin, SEEK_SET) != begin) fd 1236 src/vfs/tar/tar.c res = mc_read (fd, buffer, count); fd 703 src/vfs/undelfs/undelfs.c int fd; fd 715 src/vfs/undelfs/undelfs.c fd = open (file, O_RDONLY); fd 716 src/vfs/undelfs/undelfs.c if (fd == -1) fd 723 src/vfs/undelfs/undelfs.c close (fd); fd 369 src/viewer/datasource.c mcview_set_datasource_file (WView *view, int fd, const struct stat *st) fd 372 src/viewer/datasource.c view->ds_file_fd = fd; fd 414 src/viewer/datasource.c mcview_set_datasource_vfs_pipe (WView *view, int fd) fd 416 src/viewer/datasource.c g_assert (fd != -1); fd 419 src/viewer/datasource.c view->ds_vfs_pipe = fd; fd 250 src/viewer/internal.h void mcview_set_datasource_file (WView *view, int fd, const struct stat *st); fd 252 src/viewer/internal.h void mcview_set_datasource_vfs_pipe (WView *view, int fd); fd 323 src/viewer/mcviewer.c int fd; fd 329 src/viewer/mcviewer.c fd = mc_open (vpath, O_RDONLY | O_NONBLOCK); fd 330 src/viewer/mcviewer.c if (fd == -1) fd 344 src/viewer/mcviewer.c if (mc_fstat (fd, &st) == -1) fd 346 src/viewer/mcviewer.c mc_close (fd); fd 360 src/viewer/mcviewer.c mc_close (fd); fd 370 src/viewer/mcviewer.c if (st.st_size == 0 || mc_lseek (fd, 0, SEEK_SET) == -1) fd 373 src/viewer/mcviewer.c mcview_set_datasource_vfs_pipe (view, fd); fd 381 src/viewer/mcviewer.c type = get_compression_type (fd, file); fd 404 src/viewer/mcviewer.c mc_close (fd); fd 405 src/viewer/mcviewer.c fd = fd1; fd 406 src/viewer/mcviewer.c mc_fstat (fd, &st); fd 411 src/viewer/mcviewer.c mcview_set_datasource_file (view, fd, &st); fd 91 tests/lib/vfs/tempdir.c int fd; fd 94 tests/lib/vfs/tempdir.c fd = mc_mkstemps (&pname_vpath, "mctest-", NULL); fd 98 tests/lib/vfs/tempdir.c close (fd); fd 99 tests/lib/vfs/tempdir.c ck_assert_int_ne (fd, -1);