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

  /bionic/libc/arch-arm/syscalls/
sendfile.S 5 ENTRY(sendfile) function
14 END(sendfile)
  /bionic/libc/arch-arm64/syscalls/
sendfile.S 5 ENTRY(sendfile) function
14 END(sendfile)
16 ALIAS_SYMBOL(sendfile64, sendfile)
  /bionic/libc/arch-mips/syscalls/
sendfile.S 5 ENTRY(sendfile) function
19 END(sendfile)
  /bionic/libc/arch-mips64/syscalls/
sendfile.S 5 ENTRY(sendfile) function
25 END(sendfile)
27 ALIAS_SYMBOL(sendfile64, sendfile)
  /bionic/libc/arch-x86/syscalls/
sendfile.S 5 ENTRY(sendfile) function
36 END(sendfile)
  /bionic/libc/arch-x86_64/syscalls/
sendfile.S 5 ENTRY(sendfile) function
16 END(sendfile)
18 ALIAS_SYMBOL(sendfile64, 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);
73 #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/
BlockGuardOs.java 263 @Override public long sendfile(FileDescriptor outFd, FileDescriptor inFd, MutableLong inOffset, long byteCount) throws ErrnoException { method in class:BlockGuardOs
265 return os.sendfile(outFd, inFd, inOffset, byteCount);
Os.java 133 public long sendfile(FileDescriptor outFd, FileDescriptor inFd, MutableLong inOffset, long byteCount) throws ErrnoException; method in interface:Os
Posix.java 195 public native long sendfile(FileDescriptor outFd, FileDescriptor inFd, MutableLong inOffset, long byteCount) throws ErrnoException; method in class:Posix
ForwardingOs.java 137 public long sendfile(FileDescriptor outFd, FileDescriptor inFd, MutableLong inOffset, long byteCount) throws ErrnoException { return os.sendfile(outFd, inFd, inOffset, byteCount); } method in class:ForwardingOs
  /libcore/luni/src/main/java/android/system/
Os.java 402 * See <a href="http://man7.org/linux/man-pages/man2/sendfile.2.html">sendfile(2)</a>.
404 public static long sendfile(FileDescriptor outFd, FileDescriptor inFd, MutableLong inOffset, long byteCount) throws ErrnoException { return Libcore.os.sendfile(outFd, inFd, inOffset, byteCount); } method in class:Os
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 208 milliseconds