Home
last modified time | relevance | path

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

/external/libxml2/patches/
D0001-Add-ICU-support-for-libxml.patch118 + handler->uconv_in = NULL;
163 + enc->uconv_in = ucv_in;
261 + else if (handler->uconv_in != NULL) {
262 + ret = xmlUconvWrapper(handler->uconv_in, 1, &out->content[out->use],
278 + else if (handler->uconv_in != NULL) {
279 + ret = xmlUconvWrapper(handler->uconv_in, 1, &out->content[out->use],
348 + if ((handler->uconv_out != NULL) || (handler->uconv_in != NULL)) {
356 + if (handler->uconv_in != NULL) {
357 + closeIcuConverter(handler->uconv_in);
358 + handler->uconv_in = NULL;
[all …]
/external/libxml2/
Dencoding.c1359 handler->uconv_in = NULL; in xmlNewCharEncodingHandler()
1716 enc->uconv_in = ucv_in; in xmlFindCharEncodingHandler()
1952 else if (handler->uconv_in != NULL) { in xmlCharEncFirstLine()
1953 ret = xmlUconvWrapper(handler->uconv_in, 1, &out->content[out->use], in xmlCharEncFirstLine()
2047 else if (handler->uconv_in != NULL) { in xmlCharEncInFunc()
2048 ret = xmlUconvWrapper(handler->uconv_in, 1, &out->content[out->use], in xmlCharEncInFunc()
2345 if ((handler->uconv_out != NULL) || (handler->uconv_in != NULL)) { in xmlCharEncCloseFunc()
2353 if (handler->uconv_in != NULL) { in xmlCharEncCloseFunc()
2354 closeIcuConverter(handler->uconv_in); in xmlCharEncCloseFunc()
2355 handler->uconv_in = NULL; in xmlCharEncCloseFunc()
/external/libxml2/include/libxml/
Dencoding.h165 uconv_t *uconv_in; member