Lines Matching refs:ffa_op_callbacks
41 static struct ffa_op_callbacks *op_callbacks;
52 #define OP_STAT offsetof(struct ffa_op_callbacks, stat)
53 #define OP_READMOUNT offsetof(struct ffa_op_callbacks, readmount)
54 #define OP_READDIR_START offsetof(struct ffa_op_callbacks, readdir_start)
55 #define OP_READDIR_READ_NEXT offsetof(struct ffa_op_callbacks, readdir_read_next)
56 #define OP_READDIR_END offsetof(struct ffa_op_callbacks, readdir_end)
57 #define OP_MKDIR offsetof(struct ffa_op_callbacks, mkdir)
58 #define OP_CREATE offsetof(struct ffa_op_callbacks, create)
59 #define OP_RELEASE offsetof(struct ffa_op_callbacks, release)
60 #define OP_READ offsetof(struct ffa_op_callbacks, read)
61 #define OP_WRITE offsetof(struct ffa_op_callbacks, write)
62 #define OP_FTRUNCATE offsetof(struct ffa_op_callbacks, ftruncate)
63 #define OP_TRUNCATE offsetof(struct ffa_op_callbacks, truncate)
64 #define OP_UNLINK offsetof(struct ffa_op_callbacks, unlink)
65 #define OP_RMDIR offsetof(struct ffa_op_callbacks, rmdir)
600 void ffsa_init_bottom(const char *fuse_mountpoint, struct ffa_op_callbacks *op_cbs) in ffsa_init_bottom()