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.c1361 handler->uconv_out = NULL; in xmlNewCharEncodingHandler()
1725 encu->uconv_out = ucv_out; in xmlFindCharEncodingHandler()
2197 else if (handler->uconv_out != NULL) { in xmlCharEncOutFunc()
2198 ret = xmlUconvWrapper(handler->uconv_out, 0, in xmlCharEncOutFunc()
2252 else if (handler->uconv_out != NULL) { in xmlCharEncOutFunc()
2253 ret = xmlUconvWrapper(handler->uconv_out, 0, in xmlCharEncOutFunc()
2382 if ((handler->uconv_out != NULL) || (handler->uconv_in != NULL)) { in xmlCharEncCloseFunc()
2384 if (handler->uconv_out != NULL) { in xmlCharEncCloseFunc()
2385 closeIcuConverter(handler->uconv_out); in xmlCharEncCloseFunc()
2386 handler->uconv_out = NULL; in xmlCharEncCloseFunc()
[all …]
/external/libxml2/include/libxml/
Dencoding.h151 uconv_t *uconv_out; member