Lines Matching defs:result
77 CURLcode result=CURLE_OK;
119 result = Curl_write(conn, sockfd, sel, k, &amount);
120 if(!result) { /* Which may not have written it all! */
121 result = Curl_client_write(conn, CLIENTWRITE_HEADER, sel, amount);
122 if(result) {
124 return result;
134 return result;
152 result = Curl_sendf(sockfd, conn, "\r\n");
153 if(result) {
155 return result;
157 result = Curl_client_write(conn, CLIENTWRITE_HEADER, (char *)"\r\n", 2);
158 if(result)
159 return result;