Lines Matching defs:fuse_fd
121 int fuse_fd = -1;
128 fuse_fd = fuse_open_channel(mountpoint, options_copy);
129 if (fuse_fd == -1) {
133 flags = fcntl(fuse_fd, F_GETFD);
134 if (flags == -1 || fcntl(fuse_fd, F_SETFD, flags & ~FD_CLOEXEC) == 1) {
140 return fuse_fd;
250 int fuse_fd = 0;
421 fuse_fd = prepare_fuse_fd(mountpoint, type, options);
423 snprintf(dev_fd_mountpoint, 20, "/dev/fd/%u", fuse_fd);
451 close(fuse_fd);