Lines Matching refs:cvt
81 iconv_t cvt; member
1092 if (cc->cvt != (iconv_t)(-1)) in _ast_iconv_open()
1093 iconv(cc->cvt, NiL, NiL, NiL, NiL); in _ast_iconv_open()
1107 cc->cvt = (iconv_t)(-1); in _ast_iconv_open()
1116 else if ((cc->cvt = iconv_open(to, fr)) != (iconv_t)(-1)) in _ast_iconv_open()
1120 else if ((cc->cvt = _win_iconv_open(cc, to, fr)) != (_ast_iconv_t)(-1)) in _ast_iconv_open()
1215 if (oc->cvt != (iconv_t)(-1)) in _ast_iconv_close()
1216 r = iconv_close(oc->cvt); in _ast_iconv_close()
1272 if ((*cc->from.fun)(cc->cvt, &tfb, &tfn, &b, &i) == (size_t)(-1)) in _ast_iconv()
1276 n = (*cc->to.fun)(cc->cvt, &tfb, &tfn, tb, tn); in _ast_iconv()
1282 if ((*cc->from.fun)(cc->cvt, fb, fn, tb, tn) == (size_t)(-1)) in _ast_iconv()
1296 return (*cc->to.fun)(cc->cvt, fb, fn, tb, tn); in _ast_iconv()
1309 n = (*cc->to.fun)(cc->cvt, &b, fn, tb, tn); in _ast_iconv()