Lines Matching +full:- +full:- +full:without +full:- +full:libidn2
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21 * SPDX-License-Identifier: curl
67 (void)uidna_nameToASCII_UTF8(idna, in, -1, buffer, in mac_idn_to_ascii()
93 (void)uidna_nameToUnicodeUTF8(idna, in, -1, buffer, in mac_ascii_to_idn()
163 WCHAR idn[IDN_MAX_LENGTH]; /* stores a UTF-16 string */ in win32_ascii_to_idn()
210 * CURLE_URL_MALFORMAT - the host name could not be converted
211 * CURLE_OUT_OF_MEMORY - memory problem
223 IDN2_NONTRANSITIONAL: Perform Unicode TR46 non-transitional in idn_decode()
237 /* a too old libidn2 version */ in idn_decode()
312 Curl_safefree(host->encalloc); in Curl_free_idnconverted_hostname()
323 host->dispname = host->name; in Curl_idnconvert_hostname()
326 /* Check name for non-ASCII and convert hostname if we can */ in Curl_idnconvert_hostname()
327 if(!Curl_is_ASCII_name(host->name)) { in Curl_idnconvert_hostname()
329 CURLcode result = Curl_idn_decode(host->name, &decoded); in Curl_idnconvert_hostname()
333 host->name = host->encalloc = decoded; in Curl_idnconvert_hostname()