Home | History | Annotate | Download | only in libxml2

Lines Matching full:conv

2458         ret->conv = xmlBufferCreateSize(4000);
2459 if (ret->conv == NULL) {
2467 xmlCharEncOutFunc(encoder, ret->conv, NULL);
2469 ret->conv = NULL;
2513 ret->conv = xmlBufferCreateSize(4000);
2514 if (ret->conv == NULL) {
2522 xmlCharEncOutFunc(encoder, ret->conv, NULL);
2524 ret->conv = NULL;
2587 if (out->conv) {
2588 xmlBufferFree(out->conv);
2589 out->conv = NULL;
3393 if (out->conv == NULL) {
3394 out->conv = xmlBufferCreate();
3406 ret = xmlCharEncOutFunc(out->encoder, out->conv, out->buffer);
3412 nbchars = out->conv->use;
3431 (const char *)out->conv->content, nbchars);
3433 xmlBufferShrink(out->conv, ret);
3579 if (out->conv == NULL) {
3580 out->conv = xmlBufferCreate();
3595 ret = xmlCharEncOutFunc(out->encoder, out->conv, out->buffer);
3601 nbchars = out->conv->use;
3623 (const char *)out->conv->content, nbchars);
3625 xmlBufferShrink(out->conv, ret);
3695 if ((out->conv != NULL) && (out->encoder != NULL)) {
3699 nbchars = xmlCharEncOutFunc(out->encoder, out->conv, out->buffer);
3710 if ((out->conv != NULL) && (out->encoder != NULL) &&
3713 (const char *)out->conv->content, out->conv->use);
3715 xmlBufferShrink(out->conv, ret);