D | xfile.h | 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) in xfile_obj_load() argument 43 ssize_t ret = xfile_pread(xf, buf, count, pos); in xfile_obj_load() 55 xfile_obj_store(struct xfile *xf, const void *buf, size_t count, loff_t pos) in xfile_obj_store() argument 57 ssize_t ret = xfile_pwrite(xf, buf, count, pos); in xfile_obj_store() 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, [all …]
|