Lines Matching refs:uc
266 CURLUcode uc; in concat_url() local
385 uc = urlencode_str(&newest, useurl, strlen(useurl), !host_changed, in concat_url()
387 if(uc) in concat_url()
388 return (uc == CURLUE_TOO_LARGE) ? CURLE_TOO_LARGE : CURLE_OUT_OF_MEMORY; in concat_url()
795 CURLUcode uc; in parse_authority() local
801 uc = parse_hostname_login(u, auth, authlen, flags, &offset); in parse_authority()
802 if(uc) in parse_authority()
807 uc = cc2cu(result); in parse_authority()
811 uc = Curl_parse_port(u, host, has_scheme); in parse_authority()
812 if(uc) in parse_authority()
822 uc = ipv6_parse(u, Curl_dyn_ptr(host), Curl_dyn_len(host)); in parse_authority()
825 uc = urldecode_host(host); in parse_authority()
826 if(!uc) in parse_authority()
827 uc = hostname_check(u, Curl_dyn_ptr(host), Curl_dyn_len(host)); in parse_authority()
830 uc = CURLUE_OUT_OF_MEMORY; in parse_authority()
833 uc = CURLUE_BAD_HOSTNAME; /* Bad IPv4 address even */ in parse_authority()
838 return uc; in parse_authority()
1657 CURLUcode uc; in curl_url_get() local
1659 uc = urlencode_str(&enc, *part, partlen, TRUE, what == CURLUPART_QUERY); in curl_url_get()
1660 if(uc) in curl_url_get()
1661 return uc; in curl_url_get()
1860 CURLUcode uc; in curl_url_set() local
1885 uc = parseurl_and_replace(redired_url, u, flags); in curl_url_set()
1887 return uc; in curl_url_set()