Home
last modified time | relevance | path

Searched refs:uconv_out (Results 1 – 3 of 3) sorted by relevance

/external/libxml2/patches/
D0001-Add-ICU-support-for-libxml.patch119 + handler->uconv_out = NULL;
164 + enc->uconv_out = ucv_out;
296 + else if (handler->uconv_out != NULL) {
297 + ret = xmlUconvWrapper(handler->uconv_out, 0,
321 + else if (handler->uconv_out != NULL) {
322 + ret = xmlUconvWrapper(handler->uconv_out, 0,
348 + if ((handler->uconv_out != NULL) || (handler->uconv_in != NULL)) {
352 + if (handler->uconv_out != NULL) {
353 + closeIcuConverter(handler->uconv_out);
354 + handler->uconv_out = NULL;
[all …]
/external/libxml2/
Dencoding.c1360 handler->uconv_out = NULL; in xmlNewCharEncodingHandler()
1717 enc->uconv_out = ucv_out; in xmlFindCharEncodingHandler()
2158 else if (handler->uconv_out != NULL) { in xmlCharEncOutFunc()
2159 ret = xmlUconvWrapper(handler->uconv_out, 0, in xmlCharEncOutFunc()
2213 else if (handler->uconv_out != NULL) { in xmlCharEncOutFunc()
2214 ret = xmlUconvWrapper(handler->uconv_out, 0, in xmlCharEncOutFunc()
2345 if ((handler->uconv_out != NULL) || (handler->uconv_in != NULL)) { in xmlCharEncCloseFunc()
2349 if (handler->uconv_out != NULL) { in xmlCharEncCloseFunc()
2350 closeIcuConverter(handler->uconv_out); in xmlCharEncCloseFunc()
2351 handler->uconv_out = NULL; in xmlCharEncCloseFunc()
[all …]
/external/libxml2/include/libxml/
Dencoding.h166 uconv_t *uconv_out; member