Lines Matching refs:fuse_req_t
24 void (*readlink) (fuse_req_t req, fuse_ino_t ino);
36 + void (*canonical_path) (fuse_req_t req, fuse_ino_t ino);
41 @@ -1337,6 +1349,18 @@ int fuse_reply_attr(fuse_req_t req, const struct stat *attr,
43 int fuse_reply_readlink(fuse_req_t req, const char *link);
55 +int fuse_reply_canonical_path(fuse_req_t req, const char *path);
64 @@ -450,6 +450,11 @@ int fuse_reply_readlink(fuse_req_t req, const char *linkname)
68 +int fuse_reply_canonical_path(fuse_req_t req, const char *path)
73 int fuse_reply_open(fuse_req_t req, const struct fuse_file_info *f)
76 @@ -1202,6 +1207,16 @@ static void do_readlink(fuse_req_t req, fuse_ino_t nodeid, const void *inarg)
80 +static void do_canonical_path(fuse_req_t req, fuse_ino_t nodeid, const void *inarg)
90 static void do_mknod(fuse_req_t req, fuse_ino_t nodeid, const void *inarg)