Lines Matching defs:result
186 static int doh_done(struct Curl_easy *doh, CURLcode result)
193 if(result)
194 infof(data, "DoH request %s", curl_easy_strerror(result));
207 result = curl_easy_setopt(doh, x, y); \
208 if(result && \
209 result != CURLE_NOT_BUILT_IN && \
210 result != CURLE_UNKNOWN_OPTION) \
221 CURLcode result = CURLE_OK;
235 result = CURLE_OPERATION_TIMEDOUT;
239 result = Curl_open(&doh);
240 if(!result) {
357 return result;
370 CURLcode result = CURLE_OK;
396 result = dohprobe(data, &dohp->probe[DOH_PROBE_SLOT_IPADDR_V4],
399 if(result)
406 result = dohprobe(data, &dohp->probe[DOH_PROBE_SLOT_IPADDR_V6],
409 if(result)
802 CURLcode result = CURLE_OK;
830 result = CURLE_OUT_OF_MEMORY;
878 if(result) {
884 return result;
905 CURLcode result;
947 result = CURLE_COULDNT_RESOLVE_HOST; /* until we know better */
956 result = doh2ai(&de, dohp->host, dohp->port, &ai);
957 if(result) {
959 return result;
978 result = CURLE_OK; /* address resolution OK */
987 return result;