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 323 lib/tty/tty.c tty_resize (int fd) fd 332 lib/tty/tty.c return ioctl (fd, TIOCSWINSZ, &tty_size); fd 130 lib/tty/tty.h extern int tty_resize (int fd); fd 846 lib/util.c get_compression_type (int fd, const char *name) fd 852 lib/util.c if (mc_read (fd, (char *) magic, 4) != 4) fd 863 lib/util.c mc_lseek (fd, 8, SEEK_SET); fd 864 lib/util.c if (mc_read (fd, (char *) magic, 2) != 2) fd 894 lib/util.c if (mc_read (fd, (char *) magic + 4, 2) != 2) fd 117 lib/util.h int fd; fd 255 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 568 lib/utilunix.c p->out.fd = -1; fd 569 lib/utilunix.c p->err.fd = -1; fd 573 lib/utilunix.c NULL, &p->child_pid, NULL, read_out ? &p->out.fd : NULL, fd 574 lib/utilunix.c read_err ? &p->err.fd : NULL, error)) fd 627 lib/utilunix.c read_out = p->out.fd >= 0; fd 628 lib/utilunix.c read_err = p->err.fd >= 0; fd 640 lib/utilunix.c FD_SET (p->out.fd, &fds); fd 641 lib/utilunix.c maxfd = p->out.fd; fd 646 lib/utilunix.c FD_SET (p->err.fd, &fds); fd 647 lib/utilunix.c maxfd = MAX (maxfd, p->err.fd); fd 736 lib/utilunix.c if (p->out.fd >= 0) fd 737 lib/utilunix.c res = close (p->out.fd); fd 738 lib/utilunix.c if (p->err.fd >= 0) fd 739 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 689 lib/vfs/interface.c mc_lseek (int fd, off_t offset, int whence) fd 695 lib/vfs/interface.c if (fd == -1) fd 698 lib/vfs/interface.c vfs = vfs_class_find_by_handle (fd, &fsinfo); fd 726 lib/vfs/interface.c int fd; fd 739 lib/vfs/interface.c fd = g_mkstemp (p2); fd 740 lib/vfs/interface.c if (fd >= 0) fd 745 lib/vfs/interface.c fd = -1; fd 750 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 176 src/diffviewer/ydiff.c int fd; fd 179 src/diffviewer/ydiff.c fd = mc_mkstemps (&diff_file_name, "mcdiff", NULL); fd 180 src/diffviewer/ydiff.c if (fd == -1) fd 188 src/diffviewer/ydiff.c return fd; fd 201 src/diffviewer/ydiff.c dview_fdopen (int fd) fd 205 src/diffviewer/ydiff.c if (fd < 0) fd 219 src/diffviewer/ydiff.c fs->fd = fd; fd 262 src/diffviewer/ydiff.c int fd; fd 269 src/diffviewer/ydiff.c fd = open_temp (&fs->data); fd 270 src/diffviewer/ydiff.c if (fd < 0) fd 276 src/diffviewer/ydiff.c fs->fd = fd; fd 295 src/diffviewer/ydiff.c int fd; fd 302 src/diffviewer/ydiff.c fd = open (filename, flags); fd 303 src/diffviewer/ydiff.c if (fd < 0) fd 309 src/diffviewer/ydiff.c fs->fd = fd; fd 349 src/diffviewer/ydiff.c fs->len = read (fs->fd, fs->buf, FILE_READ_BUF); fd 376 src/diffviewer/ydiff.c rv = lseek (fs->fd, 0, SEEK_CUR); fd 392 src/diffviewer/ydiff.c rv = lseek (fs->fd, off, whence); fd 413 src/diffviewer/ydiff.c rv = lseek (fs->fd, 0, SEEK_SET); fd 437 src/diffviewer/ydiff.c rv = write (fs->fd, buf, size); fd 459 src/diffviewer/ydiff.c off = lseek (fs->fd, 0, SEEK_CUR); fd 464 src/diffviewer/ydiff.c rv = ftruncate (fs->fd, off); fd 490 src/diffviewer/ydiff.c rv = close (fs->fd); fd 534 src/diffviewer/ydiff.c fs->fd = fileno (f); fd 1802 src/editor/edit.c FILE *fd; fd 1817 src/editor/edit.c fd = fopen (block_file, "w"); fd 1818 src/editor/edit.c if (fd != NULL) fd 1819 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 62 src/editor/editbuffer.h off_t edit_buffer_read_file (edit_buffer_t *buf, int fd, off_t size, fd 64 src/editor/editbuffer.h off_t edit_buffer_write_file (edit_buffer_t *buf, int fd); fd 134 src/editor/editcmd.c int this_save_mode, rv, fd = -1; fd 162 src/editor/editcmd.c fd = mc_open (real_filename_vpath, O_RDONLY | O_BINARY); fd 163 src/editor/editcmd.c if (fd == -1) fd 168 src/editor/editcmd.c if (fd != -1) fd 169 src/editor/editcmd.c mc_close (fd); fd 224 src/editor/editcmd.c fd = mc_mkstemps (&savename_vpath, saveprefix, NULL); fd 236 src/editor/editcmd.c close (fd); fd 244 src/editor/editcmd.c fd = mc_open (savename_vpath, O_CREAT | O_WRONLY | O_TRUNC | O_BINARY, edit->stat1.st_mode); fd 245 src/editor/editcmd.c if (fd == -1) fd 254 src/editor/editcmd.c mc_close (fd); fd 281 src/editor/editcmd.c filelen = edit_buffer_write_file (&edit->buffer, fd); fd 285 src/editor/editcmd.c mc_close (fd); fd 289 src/editor/editcmd.c if (mc_close (fd) != 0) fd 301 src/editor/editcmd.c mc_close (fd); fd 513 src/filemanager/boxes.c unregister_task_running (tl->pid, tl->fd); fd 1512 src/filemanager/layout.c load_prompt (int fd, void *unused) fd 1514 src/filemanager/layout.c (void) fd; fd 89 src/filemanager/layout.h int load_prompt (int fd, void *unused); fd 1229 src/filemanager/mountlist.c int i, fd; fd 1252 src/filemanager/mountlist.c fd = open (dir, O_RDONLY); fd 1253 src/filemanager/mountlist.c if (fd == -1) fd 1256 src/filemanager/mountlist.c i = disk_get_entry (fd, &de); fd 1258 src/filemanager/mountlist.c close (fd); fd 232 src/subshell/common.c write_all (int fd, const void *buf, size_t count) fd 240 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 271 src/vfs/local/local.c int fd; fd 277 src/vfs/local/local.c fd = *(int *) data; fd 279 src/vfs/local/local.c while ((n = write (fd, buf, nbyte)) == -1) fd 402 src/vfs/local/local.c int fd; fd 407 src/vfs/local/local.c fd = *(int *) data; fd 409 src/vfs/local/local.c while ((n = read (fd, buffer, count)) == -1) fd 430 src/vfs/local/local.c int fd; fd 435 src/vfs/local/local.c fd = *(int *) data; fd 437 src/vfs/local/local.c return close (fd); fd 454 src/vfs/local/local.c int fd = *(int *) data; fd 456 src/vfs/local/local.c return fstat (fd, buf); fd 464 src/vfs/local/local.c int fd = *(int *) data; fd 466 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 252 src/viewer/internal.h void mcview_set_datasource_file (WView *view, int fd, const struct stat *st); fd 254 src/viewer/internal.h void mcview_set_datasource_vfs_pipe (WView *view, int fd); fd 325 src/viewer/mcviewer.c int fd; fd 331 src/viewer/mcviewer.c fd = mc_open (vpath, O_RDONLY | O_NONBLOCK); fd 332 src/viewer/mcviewer.c if (fd == -1) fd 346 src/viewer/mcviewer.c if (mc_fstat (fd, &st) == -1) fd 348 src/viewer/mcviewer.c mc_close (fd); fd 362 src/viewer/mcviewer.c mc_close (fd); fd 372 src/viewer/mcviewer.c if (st.st_size == 0 || mc_lseek (fd, 0, SEEK_SET) == -1) fd 375 src/viewer/mcviewer.c mcview_set_datasource_vfs_pipe (view, fd); fd 383 src/viewer/mcviewer.c type = get_compression_type (fd, file); fd 406 src/viewer/mcviewer.c mc_close (fd); fd 407 src/viewer/mcviewer.c fd = fd1; fd 408 src/viewer/mcviewer.c mc_fstat (fd, &st); fd 413 src/viewer/mcviewer.c mcview_set_datasource_file (view, fd, &st); fd 96 tests/lib/vfs/tempdir.c int fd; fd 99 tests/lib/vfs/tempdir.c fd = mc_mkstemps (&pname_vpath, "mctest-", NULL); fd 103 tests/lib/vfs/tempdir.c close (fd); fd 104 tests/lib/vfs/tempdir.c ck_assert_int_ne (fd, -1);