Searched defs:iov_size (Results 1 - 9 of 9) sorted by relevance
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/os2/ |
H A D | os2sock.c | 570 _PR_MD_WRITEV(PRFileDesc *fd, const PRIOVec *iov, PRInt32 iov_size, argument 582 * probably not a big deal because iov_size is usually small (less than 586 for (index=0; index<iov_size; index++) { 591 while ((rv = _OS2_WRITEV(osfd, (_OS2_const struct iovec*)iov, iov_size)) == -1) {
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/ |
H A D | w95sock.c | 352 _PR_MD_WRITEV(PRFileDesc *fd, const PRIOVec *iov, PRInt32 iov_size, PRIntervalTime timeout) argument 358 for (index=0; index < iov_size; index++)
|
H A D | w16sock.c | 470 _PR_MD_WRITEV(PRFileDesc *fd, const PRIOVec *iov, PRInt32 iov_size, PRIntervalTime timeout) argument 476 for (index=0; index < iov_size; index++)
|
H A D | ntio.c | 1938 _PR_MD_WRITEV(PRFileDesc *fd, const PRIOVec *iov, PRInt32 iov_size, PRIntervalTime timeout) argument 1951 return _nt_nonblock_writev(fd, iov, iov_size, timeout); 1954 for (index=0; index<iov_size; index++) {
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/beos/ |
H A D | bnet.c | 436 PRInt32 iov_size, PRIntervalTime timeout) 447 * probably not a big deal because iov_size is usually small (less than 451 for (index=0; index<iov_size; index++) { 456 while ((rv = writev(osfd, (const struct iovec*)iov, iov_size)) == -1) { 434 _MD_writev( PRFileDesc *fd, const PRIOVec *iov, PRInt32 iov_size, PRIntervalTime timeout) argument
|
H A D | bfile.c | 255 _MD_writev (PRFileDesc *fd, const PRIOVec *iov, PRInt32 iov_size, argument
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/io/ |
H A D | prsocket.c | 103 PRInt32 iov_size, PRIntervalTime timeout) 130 for (index = 0; index < iov_size; index++) 133 iov_cnt = iov_size; 161 if (iov_size - index <= LOCAL_MAXIOV) 163 else if ((iov_copy = (PRIOVec *) PR_CALLOC((iov_size - index) * 179 for (iov_cnt=1; index<iov_size; iov_cnt++, index++) { 102 SocketWritev(PRFileDesc *fd, const PRIOVec *iov, PRInt32 iov_size, PRIntervalTime timeout) argument
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/mac/ |
H A D | macsockotpt.c | 1712 PRInt32 _MD_writev(PRFileDesc *fd, const struct PRIOVec *iov, PRInt32 iov_size, PRIntervalTime timeout) argument 1714 #pragma unused (fd, iov, iov_size, timeout)
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/ |
H A D | unix.c | 998 PRInt32 iov_size, PRIntervalTime timeout) 1009 * probably not a big deal because iov_size is usually small (less than 1013 for (index=0; index<iov_size; index++) { 1018 while ((rv = writev(osfd, (const struct iovec*)iov, iov_size)) == -1) { 996 _MD_writev( PRFileDesc *fd, const PRIOVec *iov, PRInt32 iov_size, PRIntervalTime timeout) argument
|
Completed in 234 milliseconds