Home
last modified time | relevance | path

Searched refs:encalloc (Results 1 – 3 of 3) sorted by relevance

/third_party/curl/lib/
Durl.c1623 host->encalloc = (char *)ace_hostname; in Curl_idnconvert_hostname()
1625 host->name = host->encalloc; in Curl_idnconvert_hostname()
1637 host->encalloc = ace_hostname; in Curl_idnconvert_hostname()
1639 host->name = host->encalloc; in Curl_idnconvert_hostname()
1660 if(host->encalloc) { in Curl_free_idnconverted_hostname()
1661 idn2_free(host->encalloc); /* must be freed with idn2_free() since this was in Curl_free_idnconverted_hostname()
1663 host->encalloc = NULL; in Curl_free_idnconverted_hostname()
1666 free(host->encalloc); /* must be freed with free() since this was in Curl_free_idnconverted_hostname()
1668 host->encalloc = NULL; in Curl_free_idnconverted_hostname()
Dsmtp.c529 ((host.encalloc) || (!Curl_is_ASCII_name(address)) || in smtp_perform_command()
603 ((host.encalloc) || (!Curl_is_ASCII_name(address)) || in smtp_perform_mail()
643 ((host.encalloc) || (!Curl_is_ASCII_name(address)) || in smtp_perform_mail()
Durldata.h535 char *encalloc; /* allocated IDN-encoded version of the name */ member