Lines Matching defs:xf
30 void xfile_destroy(struct xfile *xf);
32 ssize_t xfile_pread(struct xfile *xf, void *buf, size_t count, loff_t pos);
33 ssize_t xfile_pwrite(struct xfile *xf, const void *buf, size_t count,
41 xfile_obj_load(struct xfile *xf, void *buf, size_t count, loff_t pos)
43 ssize_t ret = xfile_pread(xf, buf, count, pos);
55 xfile_obj_store(struct xfile *xf, const void *buf, size_t count, loff_t pos)
57 ssize_t ret = xfile_pwrite(xf, buf, count, pos);
64 loff_t xfile_seek_data(struct xfile *xf, loff_t pos);
71 int xfile_stat(struct xfile *xf, struct xfile_stat *statbuf);
73 int xfile_get_page(struct xfile *xf, loff_t offset, unsigned int len,
75 int xfile_put_page(struct xfile *xf, struct xfile_page *xbuf);