Home | History | Annotate | Download | only in v7fs

Lines Matching refs:v7fs_self

65 static int v7fs_datablock_deallocate(struct v7fs_self *, v7fs_daddr_t);
66 static int v7fs_loop1(struct v7fs_self *, v7fs_daddr_t, size_t *,
67 int (*)(struct v7fs_self *, void *, v7fs_daddr_t, size_t), void *);
68 static int v7fs_loop2(struct v7fs_self *, v7fs_daddr_t, size_t *,
69 int (*)(struct v7fs_self *, void *, v7fs_daddr_t, size_t), void *);
70 static v7fs_daddr_t v7fs_link(struct v7fs_self *, v7fs_daddr_t, int);
71 static v7fs_daddr_t v7fs_add_leaf(struct v7fs_self *, v7fs_daddr_t, int);
72 static v7fs_daddr_t v7fs_unlink(struct v7fs_self *, v7fs_daddr_t, int);
73 static v7fs_daddr_t v7fs_remove_leaf(struct v7fs_self *, v7fs_daddr_t, int);
74 static v7fs_daddr_t v7fs_remove_self(struct v7fs_self *, v7fs_daddr_t);
83 datablock_number_sanity(const struct v7fs_self *fs, v7fs_daddr_t blk)
99 v7fs_datablock_allocate(struct v7fs_self *fs, v7fs_daddr_t *block_number)
149 v7fs_datablock_deallocate(struct v7fs_self *fs, v7fs_daddr_t blk)
253 v7fs_datablock_foreach(struct v7fs_self *fs, struct v7fs_inode *p,
254 int (*func)(struct v7fs_self *, void *, v7fs_daddr_t, size_t), void *ctx)
318 v7fs_loop2(struct v7fs_self *fs, v7fs_daddr_t listblk, size_t *filesize,
319 int (*func)(struct v7fs_self *, void *, v7fs_daddr_t, size_t), void *ctx)
337 v7fs_loop1(struct v7fs_self *fs, v7fs_daddr_t listblk, size_t *filesize,
338 int (*func)(struct v7fs_self *, void *, v7fs_daddr_t, size_t), void *ctx)
360 v7fs_datablock_last(struct v7fs_self *fs, struct v7fs_inode *inode,
394 v7fs_datablock_expand(struct v7fs_self *fs, struct v7fs_inode *inode, size_t sz)
500 v7fs_link(struct v7fs_self *fs, v7fs_daddr_t listblk, int n)
521 v7fs_add_leaf(struct v7fs_self *fs, v7fs_daddr_t up, int idx)
547 v7fs_datablock_contract(struct v7fs_self *fs, struct v7fs_inode *inode,
652 v7fs_unlink(struct v7fs_self *fs, v7fs_daddr_t idxblk, int n)
670 v7fs_remove_self(struct v7fs_self *fs, v7fs_daddr_t up)
687 v7fs_remove_leaf(struct v7fs_self *fs, v7fs_daddr_t up, int n)
704 v7fs_datablock_size_change(struct v7fs_self *fs, size_t newsz,