Searched defs:sfd (Results 1 - 6 of 6) sorted by relevance
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/ |
H A D | sendzlf.c | 113 PRSendFileData sfd; local 124 sfd.fd = file; 125 sfd.file_offset = 0; 126 sfd.file_nbytes = 0; 129 sfd.header = header; 130 sfd.hlen = HEADER_LEN; 131 sfd.trailer = trailer; 132 sfd.tlen = TRAILER_LEN; 139 nbytes = PR_SendFile(acceptSock, &sfd, PR_TRANSMITFILE_KEEP_OPEN, 147 sfd [all...] |
H A D | socket.c | 188 emu_SendFile(PRFileDesc *sd, PRSendFileData *sfd, argument 191 return PR_EmulateSendFile(sd, sfd, flags, timeout); 199 PRSendFileData sfd; local 201 sfd.fd = fd; 202 sfd.file_offset = 0; 203 sfd.file_nbytes = 0; 204 sfd.header = headers; 205 sfd.hlen = hlen; 206 sfd.trailer = NULL; 207 sfd 1496 PRSendFileData sfd; local [all...] |
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/io/ |
H A D | prlayer.c | 415 PRFileDesc *sd, PRSendFileData *sfd, 422 sd->lower, sfd, flags, timeout); 414 pl_DefSendfile( PRFileDesc *sd, PRSendFileData *sfd, PRTransmitFileFlags flags, PRIntervalTime timeout) argument
|
H A D | prsocket.c | 1013 PRFileDesc *sd, PRSendFileData *sfd, 1034 rv = _PR_MD_SENDFILE(sd, sfd, flags, timeout); 1044 rv = PR_EmulateSendFile(sd, sfd, flags, timeout); 1054 PRSendFileData sfd; local 1056 sfd.fd = fd; 1057 sfd.file_offset = 0; 1058 sfd.file_nbytes = 0; 1059 sfd.header = headers; 1060 sfd.hlen = hlen; 1061 sfd 1012 SocketSendFile( PRFileDesc *sd, PRSendFileData *sfd, PRTransmitFileFlags flags, PRIntervalTime timeout) argument [all...] |
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/ |
H A D | ntio.c | 1602 _PR_MD_SENDFILE(PRFileDesc *sock, PRSendFileData *sfd, argument 1626 me->md.xmit_bufs->Head = (void *)sfd->header; 1627 me->md.xmit_bufs->HeadLength = sfd->hlen; 1628 me->md.xmit_bufs->Tail = (void *)sfd->trailer; 1629 me->md.xmit_bufs->TailLength = sfd->tlen; 1632 me->md.overlapped.overlapped.Offset = sfd->file_offset; 1653 (HANDLE)sfd->fd->secret->md.osfd, 1654 (DWORD)sfd->file_nbytes,
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/pthreads/ |
H A D | ptio.c | 2135 static PRInt32 pt_AIXDispatchSendFile(PRFileDesc *sd, PRSendFileData *sfd, argument 2144 return pt_AIXSendFile(sd, sfd, flags, timeout); 2146 return PR_EmulateSendFile(sd, sfd, flags, timeout); 2155 * Send file sfd->fd across socket sd. If specified, header and trailer 2166 static PRInt32 pt_AIXSendFile(PRFileDesc *sd, PRSendFileData *sfd, argument 2177 sf_struct.header_data = (void *) sfd->header; /* cast away the 'const' */ 2178 sf_struct.header_length = sfd->hlen; 2179 sf_struct.file_descriptor = sfd->fd->secret->md.osfd; 2181 sf_struct.file_offset = sfd->file_offset; 2182 if (sfd 2263 pt_HPUXSendFile(PRFileDesc *sd, PRSendFileData *sfd, PRTransmitFileFlags flags, PRIntervalTime timeout) argument 2385 pt_SolarisSendFile(PRFileDesc *sd, PRSendFileData *sfd, PRTransmitFileFlags flags, PRIntervalTime timeout) argument 2536 pt_SolarisDispatchSendFile(PRFileDesc *sd, PRSendFileData *sfd, PRTransmitFileFlags flags, PRIntervalTime timeout) argument 2569 pt_LinuxSendFile(PRFileDesc *sd, PRSendFileData *sfd, PRTransmitFileFlags flags, PRIntervalTime timeout) argument 2692 pt_SendFile( PRFileDesc *sd, PRSendFileData *sfd, PRTransmitFileFlags flags, PRIntervalTime timeout) argument 2739 PRSendFileData sfd; local [all...] |
Completed in 56 milliseconds