HomeSort by: relevance | last modified time | path
    Searched refs:sendfile (Results 1 - 25 of 35) sorted by relevancy

1 2

  /src/usr.bin/tftp/
extern.h 51 void sendfile(int, const char *, const char *);
main.c 446 sendfile(fd, targ, mode);
463 sendfile(fd, targ, mode);
tftp.c 222 sendfile(int fd, const char *name, const char *mode) function
  /src/external/gpl3/gcc/dist/fixincludes/tests/base/sys/
socket.h 29 extern sbsize_t sendfile __((int, int, off_t, bsize_t,
  /src/external/gpl3/gcc.old/dist/fixincludes/tests/base/sys/
socket.h 29 extern sbsize_t sendfile __((int, int, off_t, bsize_t,
  /src/usr.bin/tip/
cmdtab.c 45 { '>', NORM, "send file to remote host", sendfile },
tip.h 287 void sendfile(char);
cmds.c 258 sendfile(char cc) function
285 * used by sendfile() and cu_put()
  /src/crypto/external/bsd/openssl/dist/include/internal/
ktls.h 185 * KTLS enables the sendfile system call to send data from a file over
194 ret = sendfile(fd, s, off, size, NULL, &sbytes, flags);
226 # include <sys/sendfile.h>
329 * KTLS enables the sendfile system call to send data from a file over TLS.
330 * @flags are ignored on Linux. (placeholder for FreeBSD sendfile)
334 return sendfile(s, fd, &off, size);
  /src/crypto/external/apache2/openssl/dist/include/internal/
ktls.h 201 * KTLS enables the sendfile system call to send data from a file over
210 ret = sendfile(fd, s, off, size, NULL, &sbytes, flags);
231 #warning "KTLS requires Kernel Headers >= 5.19.0 for zerocopy sendfile"
232 #warning "Skipping Compilation of KTLS zerocopy sendfile"
249 #include <sys/sendfile.h>
374 * KTLS enables the sendfile system call to send data from a file over TLS.
375 * @flags are ignored on Linux. (placeholder for FreeBSD sendfile)
379 return sendfile(s, fd, &off, size);
  /src/libexec/tftpd/
tftpd.c 124 static void sendfile(struct formats *, int, int);
136 { "netascii", validate_access, sendfile, recvfile, 1 },
137 { "octet", validate_access, sendfile, recvfile, 0 },
948 sendfile(struct formats *pf, volatile int etftp, int acklength) function
1023 syslog(LOG_INFO, "Received %s in sendfile\n",
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/filesystem/
ops-common.h 56 # include <sys/sendfile.h> // sendfile
425 bytes_copied = ::sendfile(fd_out, fd_in, &offset, bytes_left);
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/filesystem/
ops-common.h 53 # include <sys/sendfile.h> // sendfile
522 n = ::sendfile(out.fd, in.fd, &offset, count);
std-ops.cc 51 # include <sys/sendfile.h> // sendfile
405 ssize_t n = ::sendfile(out.fd, in.fd, &offset, count);
  /src/usr.sbin/lpr/lpd/
printjob.c 138 static int sendfile(int, char *);
844 switch (sendfile('\3', last+1)) {
861 if (err == OK && sendfile('\2', file) > 0) {
885 sendfile(int type, char *file) function
  /src/external/mit/libuv/dist/src/unix/
fs.c 50 # include <sys/sendfile.h>
54 # include <sys/sendfile.h>
1053 r = sendfile(out_fd, in_fd, &off, len);
1055 /* sendfile() on SunOS returns EINVAL if the target fd is not a socket but
1075 /* sendfile() on iOS(arm64) will throw SIGSYS signal cause crash. */
1083 /* sendfile() on FreeBSD and Darwin returns EAGAIN if the target fd is in
1101 r = sendfile(in_fd, out_fd, req->off, req->bufsml[0].len, NULL, &len, 0);
1103 /* The darwin sendfile takes len as an input for the length to send,
1106 r = sendfile(in_fd, out_fd, req->off, &len, NULL, 0);
1110 * The man page for sendfile(2) on DragonFly states that `len` contain
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
i386-syscalls.def 211 SYSCALL (187, sendfile)
  /src/external/bsd/libevent/dist/
CMakeLists.txt 410 sys/sendfile.h
487 sendfile
buffer.c 70 #include <sys/sendfile.h>
1197 /*XXX fails badly on sendfile case. */
1269 /*XXX can fail badly on sendfile case. */
1421 /* TODO(niels): deal with buffers that point to NULL like sendfile */
2491 res = sendfile(source_fd, dest_fd, chain->misalign, &len, NULL, 0);
2497 res = sendfile(source_fd, dest_fd, chain->misalign, chain->off, NULL, &len, 0);
2504 res = sendfile(dest_fd, source_fd, &offset, chain->off);
2513 res = sendfile(dest_fd, source_fd, &offset, chain->off);
  /src/external/bsd/ntp/dist/sntp/libevent/
CMakeLists.txt 410 sys/sendfile.h
487 sendfile
buffer.c 68 #include <sys/sendfile.h>
1195 /*XXX fails badly on sendfile case. */
1267 /*XXX can fail badly on sendfile case. */
1419 /* TODO(niels): deal with buffers that point to NULL like sendfile */
2489 res = sendfile(source_fd, dest_fd, chain->misalign, &len, NULL, 0);
2495 res = sendfile(source_fd, dest_fd, chain->misalign, chain->off, NULL, &len, 0);
2502 res = sendfile(dest_fd, source_fd, &offset, chain->off);
2511 res = sendfile(dest_fd, source_fd, &offset, chain->off);
  /src/sys/arch/ia64/stand/common/
help.common 279 Set the number of sendfile buffers to be allocated. This
  /src/external/gpl3/gdb/dist/sim/m32r/
traps.c 48 #include <sys/sendfile.h>
1325 result = sendfile (arg1, arg2, &offset, arg3);
  /src/external/gpl3/gdb.old/dist/sim/m32r/
traps.c 48 #include <sys/sendfile.h>
1325 result = sendfile (arg1, arg2, &offset, arg3);
  /src/external/apache2/llvm/dist/libcxx/src/filesystem/
operations.cpp 34 #if __has_include(<sys/sendfile.h>)
35 # include <sys/sendfile.h>
821 if ((res = ::sendfile(write_fd.fd, read_fd.fd, nullptr, count)) == -1) {

Completed in 56 milliseconds

1 2