Lines Matching refs:cnv
138 UConverter *cnv = u_getDefaultConverter(&err); in u_uastrncpy() local
139 if(U_SUCCESS(err) && cnv != NULL) { in u_uastrncpy()
140 ucnv_reset(cnv); in u_uastrncpy()
141 ucnv_toUnicode(cnv, in u_uastrncpy()
149 ucnv_reset(cnv); /* be good citizens */ in u_uastrncpy()
150 u_releaseDefaultConverter(cnv); in u_uastrncpy()
168 UConverter *cnv = u_getDefaultConverter(&err); in u_uastrcpy() local
169 if(U_SUCCESS(err) && cnv != NULL) { in u_uastrcpy()
170 ucnv_toUChars(cnv, in u_uastrcpy()
176 u_releaseDefaultConverter(cnv); in u_uastrcpy()
210 UConverter *cnv = u_getDefaultConverter(&err); in u_austrncpy() local
211 if(U_SUCCESS(err) && cnv != NULL) { in u_austrncpy()
212 ucnv_reset(cnv); in u_austrncpy()
213 ucnv_fromUnicode(cnv, in u_austrncpy()
221 ucnv_reset(cnv); /* be good citizens */ in u_austrncpy()
222 u_releaseDefaultConverter(cnv); in u_austrncpy()
240 UConverter *cnv = u_getDefaultConverter(&err); in u_austrcpy() local
241 if(U_SUCCESS(err) && cnv != NULL) { in u_austrcpy()
242 int32_t len = ucnv_fromUChars(cnv, in u_austrcpy()
248 u_releaseDefaultConverter(cnv); in u_austrcpy()