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

  /prebuilts/go/darwin-x86/src/net/
sendfile_stub.go 11 func sendFile(c *netFD, r io.Reader) (n int64, err error, handled bool) {
sendfile_windows.go 13 // sendFile copies the contents of r to c using the TransmitFile
16 // if handled == true, sendFile returns the number of bytes copied and any
19 // if handled == false, sendFile performed no work.
21 // Note that sendfile for windows does not support >2GB file.
22 func sendFile(fd *netFD, r io.Reader) (written int64, err error, handled bool) {
sendfile_dragonfly.go 17 // sendFile copies the contents of r to c using the sendfile
20 // if handled == true, sendFile returns the number of bytes copied and any
23 // if handled == false, sendFile performed no work.
24 func sendFile(c *netFD, r io.Reader) (written int64, err error, handled bool) {
52 // The other quirk with DragonFly's sendfile implementation is that it doesn't
74 n, err1 := syscall.Sendfile(dst, src, &pos1, n)
94 // don't implement sendfile)
103 err = os.NewSyscallError("sendfile", err)
sendfile_freebsd.go 17 // sendFile copies the contents of r to c using the sendfile
20 // if handled == true, sendFile returns the number of bytes copied and any
23 // if handled == false, sendFile performed no work.
24 func sendFile(c *netFD, r io.Reader) (written int64, err error, handled bool) {
52 // The other quirk with FreeBSD's sendfile implementation is that it doesn't
74 n, err1 := syscall.Sendfile(dst, src, &pos1, n)
94 // don't implement sendfile)
103 err = os.NewSyscallError("sendfile", err)
sendfile_linux.go 17 // sendFile copies the contents of r to c using the sendfile
20 // if handled == true, sendFile returns the number of bytes copied and any
23 // if handled == false, sendFile performed no work.
24 func sendFile(c *netFD, r io.Reader) (written int64, err error, handled bool) {
51 n, err1 := syscall.Sendfile(dst, src, nil, n)
67 // don't implement sendfile)
76 err = os.NewSyscallError("sendfile", err)
sendfile_solaris.go 21 // sendFile copies the contents of r to c using the sendfile
24 // if handled == true, sendFile returns the number of bytes copied and any
27 // if handled == false, sendFile performed no work.
28 func sendFile(c *netFD, r io.Reader) (written int64, err error, handled bool) {
56 // The other quirk with Solaris's sendfile implementation is that it doesn't
78 n, err1 := syscall.Sendfile(dst, src, &pos1, n)
105 // don't implement sendfile)
114 err = os.NewSyscallError("sendfile", err)
  /prebuilts/go/linux-x86/src/net/
sendfile_stub.go 11 func sendFile(c *netFD, r io.Reader) (n int64, err error, handled bool) {
sendfile_windows.go 13 // sendFile copies the contents of r to c using the TransmitFile
16 // if handled == true, sendFile returns the number of bytes copied and any
19 // if handled == false, sendFile performed no work.
21 // Note that sendfile for windows does not support >2GB file.
22 func sendFile(fd *netFD, r io.Reader) (written int64, err error, handled bool) {
sendfile_dragonfly.go 17 // sendFile copies the contents of r to c using the sendfile
20 // if handled == true, sendFile returns the number of bytes copied and any
23 // if handled == false, sendFile performed no work.
24 func sendFile(c *netFD, r io.Reader) (written int64, err error, handled bool) {
52 // The other quirk with DragonFly's sendfile implementation is that it doesn't
74 n, err1 := syscall.Sendfile(dst, src, &pos1, n)
94 // don't implement sendfile)
103 err = os.NewSyscallError("sendfile", err)
sendfile_freebsd.go 17 // sendFile copies the contents of r to c using the sendfile
20 // if handled == true, sendFile returns the number of bytes copied and any
23 // if handled == false, sendFile performed no work.
24 func sendFile(c *netFD, r io.Reader) (written int64, err error, handled bool) {
52 // The other quirk with FreeBSD's sendfile implementation is that it doesn't
74 n, err1 := syscall.Sendfile(dst, src, &pos1, n)
94 // don't implement sendfile)
103 err = os.NewSyscallError("sendfile", err)
sendfile_linux.go 17 // sendFile copies the contents of r to c using the sendfile
20 // if handled == true, sendFile returns the number of bytes copied and any
23 // if handled == false, sendFile performed no work.
24 func sendFile(c *netFD, r io.Reader) (written int64, err error, handled bool) {
51 n, err1 := syscall.Sendfile(dst, src, nil, n)
67 // don't implement sendfile)
76 err = os.NewSyscallError("sendfile", err)
sendfile_solaris.go 21 // sendFile copies the contents of r to c using the sendfile
24 // if handled == true, sendFile returns the number of bytes copied and any
27 // if handled == false, sendFile performed no work.
28 func sendFile(c *netFD, r io.Reader) (written int64, err error, handled bool) {
56 // The other quirk with Solaris's sendfile implementation is that it doesn't
78 n, err1 := syscall.Sendfile(dst, src, &pos1, n)
105 // don't implement sendfile)
114 err = os.NewSyscallError("sendfile", err)
  /frameworks/av/media/mtp/
MtpDevHandle.cpp 49 int sendFile(mtp_file_range mfr);
75 int MtpDevHandle::sendFile(mtp_file_range mfr) {
MtpFfsHandle.cpp 743 int MtpFfsHandle::sendFile(mtp_file_range mfr) {
  /cts/tests/tests/telephony/src/android/telephony/cts/
MmsTest.java 196 final File sendFile = new File(context.getCacheDir(), fileName);
201 assertTrue(writePdu(sendFile, pdu));
213 sendFile.delete();
  /libcore/support/src/test/java/tests/support/
Support_TestWebServer.java 632 sendFile(ps);
641 sendFile(ps);
827 void sendFile(PrintStream ps) throws IOException {
833 sendFile(ps, Support_TestWebData.test0Data);
835 sendFile(ps, Support_TestWebData.tests[testNum]);
839 void sendFile(PrintStream ps, byte[] bytes) throws IOException {
  /frameworks/base/tests/CoreTests/android/core/
TestWebServer.java 701 sendFile(ps);
710 sendFile(ps);
853 void sendFile(PrintStream ps) throws IOException {
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppObexClientSession.java 286 status = sendFile(mFileInfo);
337 private int sendFile(BluetoothOppSendFileInfo fileInfo) {
488 Log.i(TAG, "SendFile finished send out file " + fileInfo.mFileName
495 Log.i(TAG, "SendFile interrupted when send out file " + fileInfo.mFileName
  /external/libvncserver/webclients/java-applet/ssl/
SignedUltraViewerSSL.jar 
UltraViewerSSL.jar 
  /prebuilts/tools/common/m2/repository/com/koushikdutta/async/androidasync/2.1.3/
androidasync-2.1.3.jar 
  /external/testng/ant/
ivy-2.1.0.jar 

Completed in 469 milliseconds