HomeSort by relevance Sort by last modified time
    Searched refs:iolen (Results 1 - 2 of 2) sorted by null

  /external/curl/tests/libtest/
lib556.c 72 size_t iolen; local
75 res = curl_easy_send(curl, request, strlen(request), &iolen);
83 res = curl_easy_recv(curl, buf, 1024, &iolen);
89 if(iolen) {
91 if(!write(STDOUT_FILENO, buf, iolen))
94 total += iolen;
  /external/curl/docs/examples/
sendrecv.c 66 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;

Completed in 450 milliseconds