Searched refs:iov_len (Results 1 - 25 of 174) sorted by relevance

1234567

/macosx-10.9.5/xnu-2422.115.4/bsd/sys/_types/
H A D_iovec_t.h32 size_t iov_len; /* [XSI] Size of region iov_base points to */ member in struct:iovec
/macosx-10.9.5/Libc-997.90.3/stdio/FreeBSD/
H A Dfvwrite.h41 size_t iov_len; member in struct:__siov
H A Dperror.c59 v->iov_len = strlen(s);
62 v->iov_len = 2;
67 v->iov_len = strlen(v->iov_base);
70 v->iov_len = 1;
H A Dfputs.c66 iov.iov_len = uio.uio_resid = strlen(s);
75 return iov.iov_len;
H A Dputs.c66 iov[0].iov_len = c = strlen(s);
68 iov[1].iov_len = 1;
H A Dputw.c55 iov.iov_len = uio.uio_resid = sizeof(w);
/macosx-10.9.5/Libinfo-449.1.3/dns.subproj/
H A Dherror.c90 v->iov_len = strlen(s);
93 v->iov_len = 2;
97 v->iov_len = strlen(v->iov_base);
100 v->iov_len = 1;
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/
H A Ddglossy.c107 int iov_len; member in struct:__anon8249
265 int /*iov_len*/,
273 int iov_len,
281 free_iov(sm_stash.iov, sm_stash.iov_len);
285 sm_stash.iov = mcopy_iov(iov, iov_len);
286 sm_stash.iov_len = iov_len;
309 serr = rpc__socket_sendmsg(sm_stash.sock, sm_stash.iov, sm_stash.iov_len,
313 RPC_DG_PLOG_LOSSY_SENDMSG_PKT(sm_stash.iov, sm_stash.iov_len, 2);
331 int iov_len, /* numbe
269 stash_sendmsg_pkt( rpc_socket_t sock, rpc_socket_iovec_p_t iov, int iov_len, rpc_addr_p_t addr ) argument
327 rpc__dg_lossy_socket_sendmsg( rpc_socket_t sock, rpc_socket_iovec_p_t iov, int iov_len, rpc_addr_p_t addr, int *cc ) argument
[all...]
H A Dcnnet.h115 (iov)[_num_elts].iov_len = (int) ((iovector)->elt[_num_elts].data_len); \
116 (bytes_to_send) += (iov)[_num_elts].iov_len; \
132 if ((iovp)->iov_len > _bytes_to_adjust) \
134 (iovp)->iov_len -= _bytes_to_adjust; \
138 _bytes_to_adjust -= (iovp)->iov_len; \
/macosx-10.9.5/Heimdal-323.92.1/lib/roken/
H A Dwritev.c47 tot += iov[i].iov_len;
55 memcpy (p, iov[i].iov_base, iov[i].iov_len);
56 p += iov[i].iov_len;
H A Dreadv.c47 tot += iov[i].iov_len;
56 ssize_t cnt = min(nb, iov->iov_len);
H A Drecvmsg.c48 tot += iov[i].iov_len;
57 ssize_t cnt = min(nb, iov->iov_len);
H A Dsendmsg.c50 tot += iov[i].iov_len;
58 memcpy (p, iov[i].iov_base, iov[i].iov_len);
59 p += iov[i].iov_len;
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/file_io/unix/
H A Dfullrw.c76 total += vec[i].iov_len;
89 if (amt >= vec[i].iov_len) {
90 amt -= vec[i].iov_len;
99 vec[i].iov_len - amt, NULL);
104 vec[i].iov_len, &amt);
/macosx-10.9.5/apr-30/apr/apr/file_io/unix/
H A Dfullrw.c76 total += vec[i].iov_len;
89 if (amt >= vec[i].iov_len) {
90 amt -= vec[i].iov_len;
99 vec[i].iov_len - amt, NULL);
104 vec[i].iov_len, &amt);
/macosx-10.9.5/xnu-2422.115.4/bsd/netinet6/
H A Din6_cga.c73 .iov_len = 0,
77 .iov_len = 0,
110 SHA1Update(&ctx, pubkey->iov_base, pubkey->iov_len);
139 SHA1Update(&ctx, pubkey->iov_base, pubkey->iov_len);
196 if (privkey.iov_base == NULL || privkey.iov_len == 0 ||
197 privkey.iov_len >= IN6_CGA_KEY_MAXSIZE)
200 if (pubkey.iov_base == NULL || pubkey.iov_len == 0 ||
201 pubkey.iov_len >= IN6_CGA_KEY_MAXSIZE)
210 MALLOC(privkeycopy, caddr_t, privkey.iov_len, M_IP6CGA, M_WAITOK);
214 MALLOC(pubkeycopy, caddr_t, pubkey.iov_len, M_IP6CG
[all...]
H A Dnd6_send.c119 if (iov->iov_len > 0) {
120 VERIFY(iov->iov_len < UINT16_MAX);
128 u16 = (u_int16_t) iov->iov_len;
133 if (&oldp[iov->iov_len] < fin)
134 bcopy(iov->iov_base, oldp, iov->iov_len);
135 oldp += iov->iov_len;
180 iov->iov_len = u16;
182 if (iov->iov_len > IN6_CGA_KEY_MAXSIZE) {
190 newp += iov->iov_len;
195 iov->iov_len
[all...]
/macosx-10.9.5/dtrace-118.1/test/tst/common/docsExamples/
H A Dksyms.d61 printf("uiomove %u bytes to %p in pid %d\n", this->iov->iov_len,
/macosx-10.9.5/apache-786.1/httpd/test/
H A Dtest-writev.c92 vector[0].iov_len = sizeof(buf);
94 vector[1].iov_len = sizeof(buf);
96 vector[2].iov_len = sizeof(buf);
/macosx-10.9.5/OpenSSH-186/openssh/
H A Datomicio.c116 for (; iovcnt > 0 && iov[0].iov_len > 0;) {
136 while (iovcnt > 0 && rem >= iov[0].iov_len) {
137 rem -= iov[0].iov_len;
142 if (rem > 0 && (iovcnt <= 0 || rem > iov[0].iov_len)) {
150 iov[0].iov_len -= rem;
/macosx-10.9.5/shell_cmds-175/echo/
H A Decho.c115 vp++->iov_len = len;
118 vp++->iov_len = 1;
124 vp++->iov_len = 1;
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/include/
H A Dapr_want.h97 size_t iov_len; member in struct:iovec
/macosx-10.9.5/apr-30/apr/apr/include/
H A Dapr_want.h97 size_t iov_len; member in struct:iovec
/macosx-10.9.5/remote_cmds-41.90.1/wall.tproj/
H A Dttymsg.c107 left += iov[cnt].iov_len;
120 for (cnt = 0; (size_t)wret >= iov->iov_len; ++cnt) {
121 wret -= iov->iov_len;
127 iov->iov_len -= wret;
/macosx-10.9.5/xnu-2422.115.4/bsd/sys/
H A Duio_internal.h113 u_int64_t iov_len; /* Length. */ member in struct:kern_iovec
119 user_size_t iov_len; /* Length. */ member in struct:user_iovec
126 uint32_t iov_len; /* Length. */ member in struct:user32_iovec
131 uint64_t iov_len; /* Length. */ member in struct:user64_iovec

Completed in 423 milliseconds

1234567