Lines Matching defs:offp
1143 * wapbl_circ_write(wl, data, len, offp)
1146 * at linear byte offset *offp, and returning the new linear byte
1147 * offset in *offp.
1157 wapbl_circ_write(struct wapbl *wl, void *data, size_t len, off_t *offp)
1160 off_t off = *offp;
1194 *offp = off;
2548 * wapbl_write_blocks(wl, offp)
2552 * queue head at byte offset *offp, and returning the new head's
2553 * byte offset in *offp.
2556 wapbl_write_blocks(struct wapbl *wl, off_t *offp)
2562 off_t off = *offp;
2638 *offp = off;
2643 * wapbl_write_revocations(wl, offp)
2647 * circular queue's head at byte offset *offp, and returning the
2648 * new head's byte offset in *offp.
2651 wapbl_write_revocations(struct wapbl *wl, off_t *offp)
2657 off_t off = *offp;
2694 *offp = off;
2699 * wapbl_write_inodes(wl, offp)
2703 * circular queue's head at byte offset *offp and returning the
2704 * new head's byte offset in *offp.
2707 wapbl_write_inodes(struct wapbl *wl, off_t *offp)
2713 off_t off = *offp;
2751 *offp = off;
2872 * wapbl_circ_read(wr, data, len, offp)
2875 * starting at the linear byte offset *offp, and returning the new
2876 * linear byte offset in *offp.
2883 wapbl_circ_read(struct wapbl_replay *wr, void *data, size_t len, off_t *offp)
2886 off_t off = *offp;
2918 *offp = off;
2923 * wapbl_circ_advance(wr, len, offp)
2926 * is len bytes past *offp, and store it in *offp.
2936 wapbl_circ_advance(struct wapbl_replay *wr, size_t len, off_t *offp)
2939 off_t off = *offp;
2954 *offp = off;
3132 wapbl_replay_process_blocks(struct wapbl_replay *wr, off_t *offp)
3147 *offp);
3148 wapbl_circ_advance(wr, fsblklen, offp);