Home | History | Annotate | Download | only in src

Lines Matching refs:out_buff

1691     xmlOutputBufferPtr out_buff;
1705 out_buff = xmlOutputBufferCreateBuffer(buffer, handler);
1706 if (out_buff == NULL) {
1712 ret->buf = out_buff;
2176 xmlOutputBufferPtr out_buff = NULL;
2212 if ((out_buff = xmlAllocOutputBuffer(conv_hdlr)) == NULL ) {
2219 ctxt.buf = out_buff;
2226 xmlOutputBufferFlush(out_buff);
2227 if (out_buff->conv != NULL) {
2228 *doc_txt_len = out_buff->conv->use;
2229 *doc_txt_ptr = xmlStrndup(out_buff->conv->content, *doc_txt_len);
2231 *doc_txt_len = out_buff->buffer->use;
2232 *doc_txt_ptr = xmlStrndup(out_buff->buffer->content, *doc_txt_len);
2234 (void)xmlOutputBufferClose(out_buff);