Searched refs:iolen (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10.1/curl-83.1.2/curl/tests/libtest/
H A Dlib556.c71 size_t iolen; local
74 res = curl_easy_send(curl, request, strlen(request), &iolen);
82 res = curl_easy_recv(curl, buf, 1024, &iolen);
88 if(iolen) {
90 if(!write(STDOUT_FILENO, buf, iolen))
93 total += iolen;
/macosx-10.10.1/curl-83.1.2/curl/docs/examples/
H A Dsendrecv.c66 size_t iolen; local
104 /* Send the request. Real applications should check the iolen
106 res = curl_easy_send(curl, request, strlen(request), &iolen);
121 res = curl_easy_recv(curl, buf, 1024, &iolen);
126 nread = (curl_off_t)iolen;
/macosx-10.10.1/xnu-2782.1.97/bsd/vfs/
H A Dvfs_xattr.c3201 int ret, iolen; local
3223 ret = vn_rdwr(UIO_READ, xvp, buff, chunk, pos, UIO_SYSSPACE, IO_NODELOCKED|IO_NOAUTH, ucred, &iolen, p);
3224 if (iolen != 0) {
3230 ret = vn_rdwr(UIO_WRITE, xvp, buff, chunk, pos + delta, UIO_SYSSPACE, IO_NODELOCKED|IO_NOAUTH, ucred, &iolen, p);
3231 if (iolen != 0) {
3254 int ret, iolen; local
3278 ret = vn_rdwr(UIO_READ, xvp, buff, chunk, pos, UIO_SYSSPACE, IO_NODELOCKED|IO_NOAUTH, ucred, &iolen, p);
3279 if (iolen != 0) {
3285 ret = vn_rdwr(UIO_WRITE, xvp, buff, chunk, pos - delta, UIO_SYSSPACE, IO_NODELOCKED|IO_NOAUTH, ucred, &iolen, p);
3286 if (iolen !
[all...]
/macosx-10.10.1/webdavfs-367/webdav_fs.kextproj/webdav_fs.kmodproj/
H A Dwebdav_vnops.c222 size_t iolen; local
350 error = sock_send(so, &msg, 0, &iolen);
376 error = sock_receive(so, &msg, MSG_WAITALL, &iolen);

Completed in 90 milliseconds