Lines Matching refs:cnv
135 UConverter *cnv = u_getDefaultConverter(&err); in u_uastrncpy() local
136 if(U_SUCCESS(err) && cnv != NULL) { in u_uastrncpy()
137 ucnv_reset(cnv); in u_uastrncpy()
138 ucnv_toUnicode(cnv, in u_uastrncpy()
146 ucnv_reset(cnv); /* be good citizens */ in u_uastrncpy()
147 u_releaseDefaultConverter(cnv); in u_uastrncpy()
165 UConverter *cnv = u_getDefaultConverter(&err); in u_uastrcpy() local
166 if(U_SUCCESS(err) && cnv != NULL) { in u_uastrcpy()
167 ucnv_toUChars(cnv, in u_uastrcpy()
173 u_releaseDefaultConverter(cnv); in u_uastrcpy()
207 UConverter *cnv = u_getDefaultConverter(&err); in u_austrncpy() local
208 if(U_SUCCESS(err) && cnv != NULL) { in u_austrncpy()
209 ucnv_reset(cnv); in u_austrncpy()
210 ucnv_fromUnicode(cnv, in u_austrncpy()
218 ucnv_reset(cnv); /* be good citizens */ in u_austrncpy()
219 u_releaseDefaultConverter(cnv); in u_austrncpy()
237 UConverter *cnv = u_getDefaultConverter(&err); in u_austrcpy() local
238 if(U_SUCCESS(err) && cnv != NULL) { in u_austrcpy()
239 int32_t len = ucnv_fromUChars(cnv, in u_austrcpy()
245 u_releaseDefaultConverter(cnv); in u_austrcpy()