HomeSort by relevance Sort by last modified time
    Searched defs:sendfile (Results 1 - 11 of 11) sorted by null

  /bionic/libc/arch-arm/syscalls/
sendfile.S 6 ENTRY(sendfile) function
15 END(sendfile)
  /bionic/libc/arch-mips/syscalls/
sendfile.S 4 .globl sendfile
6 .ent sendfile
8 sendfile: label
22 .end sendfile
  /bionic/libc/arch-x86/syscalls/
sendfile.S 6 ENTRY(sendfile) function
30 END(sendfile)
  /libcore/luni/src/main/native/
Portability.h 44 // For Linux-compatible sendfile(3).
47 static inline ssize_t sendfile(int out_fd, int in_fd, off_t* offset, size_t count) { function
49 int result = sendfile(in_fd, out_fd, *offset, &in_out_count, NULL, 0);
74 #include <sys/sendfile.h>
  /external/iputils/
tftpd.c 102 void sendfile(struct formats *pf);
212 { "netascii", validate_access, sendfile, recvfile, 1 },
213 { "octet", validate_access, sendfile, recvfile, 0 },
349 void sendfile(struct formats *pf) function
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/
handlers.py 126 if not self.result_is_file() or not self.sendfile():
221 def sendfile(self): member in class:BaseHandler
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/
handlers.py 126 if not self.result_is_file() or not self.sendfile():
221 def sendfile(self): member in class:BaseHandler
  /libcore/luni/src/main/java/libcore/io/
Os.java 107 public long sendfile(FileDescriptor outFd, FileDescriptor inFd, MutableLong inOffset, long byteCount) throws ErrnoException; method in interface:Os
Posix.java 146 public native long sendfile(FileDescriptor outFd, FileDescriptor inFd, MutableLong inOffset, long byteCount) throws ErrnoException; method in class:Posix
ForwardingOs.java 112 public long sendfile(FileDescriptor outFd, FileDescriptor inFd, MutableLong inOffset, long byteCount) throws ErrnoException { return os.sendfile(outFd, inFd, inOffset, byteCount); } method in class:ForwardingOs
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prio.h 414 PRSendfileFN sendfile; /* Send a (partial) file with header/trailer*/ member in struct:PRIOMethods
    [all...]

Completed in 180 milliseconds