Searched refs:trl_uio (Results 1 - 3 of 3) sorted by relevance

/freebsd-9.3-release/sys/kern/
H A Duipc_syscalls.c1817 struct uio *hdr_uio, *trl_uio; local
1820 hdr_uio = trl_uio = NULL;
1832 error = copyinuio(hdtr.trailers, hdtr.trl_cnt, &trl_uio);
1839 error = kern_sendfile(td, uap, hdr_uio, trl_uio, compat);
1843 if (trl_uio)
1844 free(trl_uio, M_IOV);
1868 struct uio *hdr_uio, struct uio *trl_uio, int compat)
2310 if (trl_uio != NULL) {
2312 error = kern_writev(td, uap->s, trl_uio);
1867 kern_sendfile(struct thread *td, struct sendfile_args *uap, struct uio *hdr_uio, struct uio *trl_uio, int compat) argument
/freebsd-9.3-release/sys/sys/
H A Dsyscallsubr.h193 struct uio *hdr_uio, struct uio *trl_uio, int compat);
/freebsd-9.3-release/sys/compat/freebsd32/
H A Dfreebsd32_misc.c1647 struct uio *hdr_uio, *trl_uio; local
1651 hdr_uio = trl_uio = NULL;
1680 hdtr32.trl_cnt, &trl_uio);
1686 error = kern_sendfile(td, &ap, hdr_uio, trl_uio, compat);
1690 if (trl_uio)
1691 free(trl_uio, M_IOV);

Completed in 124 milliseconds