Symbol: sendfile
crypto/openssl/include/internal/ktls.h
210
ret = sendfile(fd, s, off, size, NULL, &sbytes, flags);
crypto/openssl/include/internal/ktls.h
379
return sendfile(s, fd, &off, size);
lib/libc/tests/sys/sendfile_test.c
1026
error = sendfile(fd, client_sock, 0, 0, NULL, NULL, SF_FLAGS(0, 0));
lib/libc/tests/sys/sendfile_test.c
1085
error = sendfile(fd, client_sock, 0, 0, NULL, NULL, SF_FLAGS(0, 0));
lib/libc/tests/sys/sendfile_test.c
1112
error = sendfile(fd, client_sock, 0, 0, NULL, NULL, SF_FLAGS(0, 0));
lib/libc/tests/sys/sendfile_test.c
1130
error = sendfile(fd, client_sock, 0, 0, NULL, NULL, SF_FLAGS(0, 0));
lib/libc/tests/sys/sendfile_test.c
359
error = sendfile(fd, client_sock, offset, nbytes, NULL, NULL,
lib/libc/tests/sys/sendfile_test.c
443
error = sendfile(fd, client_sock, offset, nbytes, NULL, NULL,
lib/libc/tests/sys/sendfile_test.c
496
error = sendfile(fd, client_sock, 0, 0, NULL, NULL, SF_FLAGS(0, 0));
lib/libc/tests/sys/sendfile_test.c
611
error = sendfile(fd, client_sock, offset, nbytes, NULL, NULL,
lib/libc/tests/sys/sendfile_test.c
739
error = sendfile(fd, client_sock, offset, nbytes, &hdtr,
lib/libc/tests/sys/sendfile_test.c
809
error = sendfile(fd, client_sock, 0, 0, hdtr1, NULL, SF_FLAGS(0, 0));
lib/libc/tests/sys/sendfile_test.c
812
error = sendfile(fd, client_sock, 0, 0, &hdtr2, NULL, SF_FLAGS(0, 0));
lib/libc/tests/sys/sendfile_test.c
815
error = sendfile(fd, client_sock, 0, 0, &hdtr3, NULL, SF_FLAGS(0, 0));
lib/libc/tests/sys/sendfile_test.c
865
error = sendfile(fd, client_sock, -1, 0, NULL, NULL, SF_FLAGS(0, 0));
lib/libc/tests/sys/sendfile_test.c
918
error = sendfile(fd, client_sock, 0, 0, NULL, &sbytes, SF_FLAGS(0, 0));
lib/libc/tests/sys/sendfile_test.c
977
error = sendfile(fd, client_sock, 0, 0, NULL, sbytes_p, SF_FLAGS(0, 0));
sys/kern/init_sysent.c
405
{ compat4(AS(freebsd4_sendfile_args),sendfile), .sy_auevent = AUE_SENDFILE, .sy_flags = SYF_CAPENABLED, .sy_thrcnt = SY_THR_STATIC }, /* 336 = freebsd4 sendfile */
sys/kern/kern_sendfile.c
1284
return (sendfile(td, uap, 0));
sys/kern/kern_sendfile.c
1301
return (sendfile(td, &args, 1));
sys/sys/socket.h
727
int sendfile(int, int, off_t, size_t, struct sf_hdtr *, off_t *, int);
tests/sys/audit/network.c
1053
ATF_REQUIRE_EQ(0, sendfile(filedesc, sockfd, 0, 0, NULL, NULL, 0));
tests/sys/audit/network.c
1079
ATF_REQUIRE_EQ(-1, sendfile(-1, -1, 0, 0, NULL, NULL, 0));
tests/sys/capsicum/capability-fd-pair.cc
10
TEST(CapabilityPair, sendfile) {
tests/sys/capsicum/syscalls.h
33
return sendfile(in_fd, out_fd, *offset, count, NULL, offset, 0);
tests/sys/file/path_test.c
735
sendfile(pathfd, sd[0], 0, 0, NULL, NULL, 0));
tests/sys/fs/fusefs/read.cc
1486
TEST_F(Read, sendfile)
tests/sys/fs/fusefs/read.cc
1519
ASSERT_EQ(0, sendfile(fd, sp[1], 0, bufsize, NULL, &sbytes, 0))
tests/sys/fs/fusefs/read.cc
1557
ASSERT_NE(0, sendfile(fd, sp[1], 0, bufsize, NULL, &sbytes, 0));
tests/sys/kern/inotify_test.c
481
error = sendfile(fd, s[0], 0, 4, NULL, &nb, 0);
tests/sys/kern/sendfile_helper.c
170
if (sendfile(fd, ss[0], start, readlen, NULL, NULL, flags) < 0)
tools/regression/security/open_to_operation/open_to_operation.c
694
if (sendfile(fd, sv[0], 0, 1, NULL, &sent, 0) == 0) {
tools/regression/sockets/sendfile/sendfile.c
313
if (sendfile(file_fd, connect_socket, test.offset, test.length,
tools/tools/netrate/httpd/httpd.c
152
if (sendfile(fd, sock, 0, 0, &sf_hdtr, NULL, 0) < 0)
usr.bin/tip/tip/cmdtab.c
40
{ '>', NORM, "send file to remote host", sendfile },
usr.bin/tip/tip/tip.h
333
void sendfile(int);
usr.sbin/lpr/lpd/printjob.c
138
static int sendfile(struct printer *_pp, int _type, char *_file,
usr.sbin/lpr/lpd/printjob.c
950
switch (sendfile(pp, '\3', last+1, *last, dfcopies)) {
usr.sbin/lpr/lpd/printjob.c
966
if (err == OK && sendfile(pp, '\2', file, '\0', 1) > 0) {