Lines Matching refs:utf8
901 char *utf8 = NULL;
919 utf8 = (char *)malloc(utf8size);
920 if (utf8 == NULL) {
926 r = idn_ucs4_ucs4toutf8(from, utf8, utf8size);
931 new_utf8 = (char *)realloc(utf8, utf8size);
936 utf8 = new_utf8;
959 inleft = strlen(utf8);
960 inbuf = utf8;
1009 free(utf8);
1018 char *utf8 = NULL;
1034 utf8 = (char *)malloc(utf8size);
1035 if (utf8 == NULL) {
1051 outbuf = utf8;
1071 new_utf8 = (char *)realloc(utf8, utf8size);
1076 utf8 = new_utf8;
1089 r = idn_ucs4_utf8toucs4(utf8, to, tolen);
1092 free(utf8);