Searched refs:bufv (Results 1 – 3 of 3) sorted by relevance
48 fuse_buf_size(const struct fuse_bufvec *bufv) { in fuse_buf_size() argument52 for (i = 0; i < bufv->count; i++) { in fuse_buf_size()53 total += bufv->buf[i].size; in fuse_buf_size()62 fuse_buf_current(const struct fuse_bufvec *bufv) { in fuse_buf_current() argument63 if (bufv->idx < bufv->count) in fuse_buf_current()64 return &bufv->buf[bufv->idx]; in fuse_buf_current()260 fuse_buf_advance(struct fuse_bufvec *bufv, size_t len) { in fuse_buf_advance() argument261 const struct fuse_buf *buf = fuse_buf_current(bufv); in fuse_buf_advance()263 assert(bufv->off + len <= buf->size); in fuse_buf_advance()264 bufv->off += len; in fuse_buf_advance()[all …]
98 size_t fuse_buf_size(const struct fuse_bufvec *bufv);
87 swcr_encdec(struct cryptodesc *crd, const struct swcr_data *sw, void *bufv, in swcr_encdec() argument90 char *buf = bufv; in swcr_encdec()