Home
last modified time | relevance | path

Searched refs:trailers (Results 1 – 10 of 10) sorted by relevance

/freebsd-13.1/contrib/apr/network_io/unix/
H A Dsendrecv.c568 headerstruct.trailers = hdtr->trailers; in apr_socket_sendfile()
625 hdtr->trailers, in apr_socket_sendfile()
737 hdtrarray[1] = hdtr->trailers[0]; in apr_socket_sendfile()
742 trailerlen += hdtr->trailers[i].iov_len; in apr_socket_sendfile()
750 memcpy(trailerbuf, hdtr->trailers[i].iov_base, in apr_socket_sendfile()
751 hdtr->trailers[i].iov_len); in apr_socket_sendfile()
752 trailerbuf += hdtr->trailers[i].iov_len; in apr_socket_sendfile()
872 parms.trailer_data = hdtr->trailers[0].iov_base; in apr_socket_sendfile()
888 hdtr->trailers[i].iov_len); in apr_socket_sendfile()
889 ptr += hdtr->trailers[i].iov_len; in apr_socket_sendfile()
[all …]
/freebsd-13.1/lib/libc/tests/sys/
H A Dsendfile_test.c640 struct iovec headers[1], trailers[1]; in hdtr_positive_test() local
671 trailers[0].iov_base = "This is a trailer"; in hdtr_positive_test()
672 trailers[0].iov_len = strlen(trailers[0].iov_base); in hdtr_positive_test()
689 hdtr.trailers = trailers; in hdtr_positive_test()
690 hdtr.trl_cnt = nitems(trailers); in hdtr_positive_test()
692 hdtr.trailers = NULL; in hdtr_positive_test()
703 testcases[i].include_trailers ? (char *)trailers[0].iov_base : ""); in hdtr_positive_test()
782 hdtr3.trailers = (struct iovec*)-1; in hdtr_negative_bad_pointers_test()
/freebsd-13.1/tools/tools/netrate/httpd/
H A Dhttpd.c151 sf_hdtr.trailers = NULL; in http_serve()
/freebsd-13.1/contrib/apr/include/
H A Dapr_network_io.h299 struct iovec* trailers; member
/freebsd-13.1/tools/regression/sockets/sendfile/
H A Dsendfile.c308 hdtr.trailers = NULL; in send_test()
/freebsd-13.1/sys/sys/
H A Dsocket.h648 struct iovec *trailers; /* pointer to an array of trailer struct iovec's */ member
/freebsd-13.1/sys/kern/
H A Dkern_sendfile.c1309 if (hdtr.trailers != NULL) { in sendfile()
1310 error = copyinuio(hdtr.trailers, hdtr.trl_cnt, in sendfile()
/freebsd-13.1/sys/compat/freebsd32/
H A Dfreebsd32_misc.c2035 uint32_t trailers; member
2064 PTRIN_CP(hdtr32, hdtr, trailers); in freebsd32_do_sendfile()
2087 if (hdtr.trailers != NULL) { in freebsd32_do_sendfile()
2088 iov32 = PTRIN(hdtr32.trailers); in freebsd32_do_sendfile()
/freebsd-13.1/sys/contrib/zlib/
H A DFAQ136 and trailers around the compressed data.
/freebsd-13.1/usr.bin/truss/
H A Dsyscalls.c2726 print_iovec(fp, trussinfo, (uintptr_t)hdtr.trailers, in print_arg()