Searched defs:hIconv (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Runtime/r3/posix/
H A Dutf8-posix.cpp112 iconv_t hIconv = (iconv_t)pThread->ahIconvs[i]; local
114 if (hIconv != (iconv_t)-1)
115 iconv_close(hIconv);
173 iconv_t hIconv = (iconv_t)*phIconv; local
174 if (hIconv == (iconv_t)-1)
184 *phIconv = hIconv = iconv_open(pszOutputCS, pszInputCS);
187 if (hIconv != (iconv_t)-1)
198 cchNonRev = iconv(hIconv, (char **)&pvInputLeft, &cbInLeft, (char **)&pvOutputLeft, &cbOutLeft);
200 cchNonRev = iconv(hIconv, (const char **)&pvInputLeft, &cbInLeft, (char **)&pvOutputLeft, &cbOutLeft);
244 iconv_close(hIconv);
[all...]

Completed in 48 milliseconds