Lines Matching refs:conv
26 UConverter* conv;
34 conv = ucnv_open(name,&status);
38 conv = NULL;
43 int32_t reqdLen = ucnv_toUChars(conv, target, 0,
59 ucnv_toUnicode(conv, &myTarget, targetLimit, &mySrc, sourceLimit, NULL, TRUE, status);
66 ucnv_close(conv);
71 UConverter* conv;
80 conv = ucnv_open(name,&status);
84 conv = NULL;
89 int32_t reqdLen = ucnv_fromUChars(conv, target, 0,
105 ucnv_fromUnicode(conv,&myTarget, targetLimit, &mySrc, sourceLimit, NULL, TRUE, status);
112 ucnv_close(conv);