Lines Matching defs:fuse
234 struct fuse { struct
235 struct fuse_global* global; argument
247 struct fuse* fuse; argument
402 static void attr_from_stat(struct fuse* fuse, struct fuse_attr *attr, in attr_from_stat()
463 static void derive_permissions_locked(struct fuse* fuse, struct node *parent, in derive_permissions_locked()
517 static void derive_permissions_recursive_locked(struct fuse* fuse, struct node *parent) { in derive_permissions_recursive_locked()
530 static bool check_caller_access_to_name(struct fuse* fuse, in check_caller_access_to_name()
552 static bool check_caller_access_to_node(struct fuse* fuse, in check_caller_access_to_node()
557 struct node *create_node_locked(struct fuse* fuse, in create_node_locked()
643 static struct node *lookup_node_by_id_locked(struct fuse *fuse, __u64 nid) in lookup_node_by_id_locked()
652 static struct node* lookup_node_and_path_by_id_locked(struct fuse* fuse, __u64 nid, in lookup_node_and_path_by_id_locked()
677 struct fuse* fuse, struct node* parent, in acquire_or_create_child_locked()
689 static void fuse_status(struct fuse *fuse, __u64 unique, int err) in fuse_status()
698 static void fuse_reply(struct fuse *fuse, __u64 unique, void *data, int len) in fuse_reply()
719 static int fuse_reply_entry(struct fuse* fuse, __u64 unique, in fuse_reply_entry()
748 static int fuse_reply_attr(struct fuse* fuse, __u64 unique, const struct node* node, in fuse_reply_attr()
764 static void fuse_notify_delete(struct fuse* fuse, const __u64 parent, in fuse_notify_delete()
795 static int handle_lookup(struct fuse* fuse, struct fuse_handler* handler, in handle_lookup()
821 static int handle_forget(struct fuse* fuse, struct fuse_handler* handler, in handle_forget()
840 static int handle_getattr(struct fuse* fuse, struct fuse_handler* handler, in handle_getattr()
862 static int handle_setattr(struct fuse* fuse, struct fuse_handler* handler, in handle_setattr()
925 static int handle_mknod(struct fuse* fuse, struct fuse_handler* handler, in handle_mknod()
954 static int handle_mkdir(struct fuse* fuse, struct fuse_handler* handler, in handle_mkdir()
1002 static int handle_unlink(struct fuse* fuse, struct fuse_handler* handler, in handle_unlink()
1050 static int handle_rmdir(struct fuse* fuse, struct fuse_handler* handler, in handle_rmdir()
1098 static int handle_rename(struct fuse* fuse, struct fuse_handler* handler, in handle_rename()
1191 static int handle_open(struct fuse* fuse, struct fuse_handler* handler, in handle_open()
1235 static int handle_read(struct fuse* fuse, struct fuse_handler* handler, in handle_read()
1262 static int handle_write(struct fuse* fuse, struct fuse_handler* handler, in handle_write()
1288 static int handle_statfs(struct fuse* fuse, struct fuse_handler* handler, in handle_statfs()
1319 static int handle_release(struct fuse* fuse, struct fuse_handler* handler, in handle_release()
1330 static int handle_fsync(struct fuse* fuse, struct fuse_handler* handler, in handle_fsync()
1355 static int handle_flush(struct fuse* fuse, struct fuse_handler* handler, in handle_flush()
1362 static int handle_opendir(struct fuse* fuse, struct fuse_handler* handler, in handle_opendir()
1405 static int handle_readdir(struct fuse* fuse, struct fuse_handler* handler, in handle_readdir()
1434 static int handle_releasedir(struct fuse* fuse, struct fuse_handler* handler, in handle_releasedir()
1445 static int handle_init(struct fuse* fuse, struct fuse_handler* handler, in handle_init()
1494 static int handle_canonical_path(struct fuse* fuse, struct fuse_handler* handler, in handle_canonical_path()
1523 static int handle_fuse_request(struct fuse *fuse, struct fuse_handler* handler, in handle_fuse_request()
1652 struct fuse* fuse = handler->fuse; in handle_fuse_requests() local
1807 static int fuse_setup(struct fuse* fuse, gid_t gid, mode_t mask) { in fuse_setup()