| 693 | } |
| 694 | |
| 695 | int |
| 696 | crypto_apply(struct cryptop *crp, int off, int len, |
| 697 | int (*f)(void *, const void *, u_int), void *arg) |
| 698 | { |
| 699 | return (crypto_apply_buf(&crp->crp_buf, off, len, f, arg)); |
| 700 | } |
| 701 | |
| 702 | static inline void * |
| 703 | m_contiguous_subsegment(struct mbuf *m, size_t skip, size_t len) |
no test coverage detected