Lines Matching refs:fuse_data
76 struct fuse_data { struct
98 static void fuse_reply(const fuse_data* fd, uint64_t unique, const void* data, size_t len) { in fuse_reply() argument
116 static int handle_init(void* data, fuse_data* fd, const fuse_in_header* hdr) { in handle_init()
152 static void fill_attr(fuse_attr* attr, const fuse_data* fd, uint64_t nodeid, uint64_t size, in fill_attr()
166 static int handle_getattr(void* /* data */, const fuse_data* fd, const fuse_in_header* hdr) { in handle_getattr()
184 static int handle_lookup(void* data, const fuse_data* fd, const fuse_in_header* hdr) { in handle_lookup()
208 static int handle_open(void* /* data */, const fuse_data* fd, const fuse_in_header* hdr) { in handle_open()
218 static int handle_flush(void* /* data */, fuse_data* /* fd */, const fuse_in_header* /* hdr */) { in handle_flush() argument
222 static int handle_release(void* /* data */, fuse_data* /* fd */, const fuse_in_header* /* hdr */) { in handle_release() argument
228 static int fetch_block(fuse_data* fd, uint64_t block) { in fetch_block()
279 static int handle_read(void* data, fuse_data* fd, const fuse_in_header* hdr) { in handle_read()
362 fuse_data fd = {}; in run_fuse_sideload()