Lines Matching defs:conf

98     struct fuse_config conf;
358 if (f->conf.debug)
628 if (!f->conf.use_ino)
630 if (f->conf.set_mode)
631 stbuf->st_mode = (stbuf->st_mode & S_IFMT) | (0777 & ~f->conf.umask);
632 if (f->conf.set_uid)
633 stbuf->st_uid = f->conf.uid;
634 if (f->conf.set_gid)
635 stbuf->st_gid = f->conf.gid;
668 pthread_kill(d->id, f->conf.intr_signal);
699 if (f->conf.intr)
706 if (f->conf.intr)
1183 e->entry_timeout = f->conf.entry_timeout;
1184 e->attr_timeout = f->conf.attr_timeout;
1186 if (f->conf.auto_cache) {
1193 if (f->conf.debug)
1349 if (f->conf.debug)
1353 if (err == -ENOENT && f->conf.negative_timeout != 0.0) {
1355 e.entry_timeout = f->conf.negative_timeout;
1369 if (f->conf.debug)
1399 if (f->conf.auto_cache) {
1406 fuse_reply_attr(req, &buf, f->conf.attr_timeout);
1490 if (f->conf.auto_cache) {
1497 fuse_reply_attr(req, &buf, f->conf.attr_timeout);
1513 if (f->conf.debug)
1562 if (f->conf.debug)
1602 if (f->conf.debug)
1627 if (f->conf.debug)
1630 if (!f->conf.hard_remove && is_open(f, parent, name))
1655 if (f->conf.debug)
1681 if (f->conf.debug)
1710 if (f->conf.debug)
1714 if (!f->conf.hard_remove && is_open(f, newdir, newname))
1746 if (f->conf.debug)
1808 if (f->conf.direct_io)
1810 if (f->conf.kernel_cache)
1827 } else if (f->conf.debug) {
1860 if (diff_timespec(&now, &node->stat_updated) > f->conf.ac_attr_timeout) {
1896 if (f->conf.direct_io)
1898 if (f->conf.kernel_cache)
1902 if (f->conf.auto_cache)
1917 } else if (f->conf.debug) {
1948 if (f->conf.debug)
1961 if (f->conf.debug)
1985 if (f->conf.debug)
1998 if (f->conf.debug)
2021 if (f->conf.debug)
2141 if (!dh->fuse->conf.use_ino) {
2143 if (dh->fuse->conf.readdir_ino) {
2612 if (f->conf.debug)
2641 if (path && f->conf.debug)
2963 struct fuse_config *conf = (struct fuse_config *) data;
2965 conf->help = 1;
3083 f->conf.entry_timeout = 1.0;
3084 f->conf.attr_timeout = 1.0;
3085 f->conf.negative_timeout = 0.0;
3086 f->conf.hard_remove = 1;
3087 f->conf.intr_signal = FUSE_DEFAULT_INTR_SIGNAL;
3089 if (fuse_opt_parse(args, &f->conf, fuse_lib_opts, fuse_lib_opt_proc) == -1)
3093 if (f->conf.modules) {
3097 for (module = f->conf.modules; module; module = next) {
3108 if (!f->conf.ac_attr_timeout_set)
3109 f->conf.ac_attr_timeout = f->conf.attr_timeout;
3116 f->conf.readdir_ino = 1;
3123 if (f->conf.help)
3165 if (f->conf.intr &&
3166 fuse_init_intr_signal(f->conf.intr_signal, &f->intr_installed) == -1)
3194 free(f->conf.modules);
3208 if (f->conf.intr && f->intr_installed)
3209 fuse_restore_intr_signal(f->conf.intr_signal);
3246 free(f->conf.modules);