Lines Matching refs:out_buff
1861 xmlOutputBufferPtr out_buff; in xmlSaveToBuffer() local
1875 out_buff = xmlOutputBufferCreateBuffer(buffer, handler); in xmlSaveToBuffer()
1876 if (out_buff == NULL) { in xmlSaveToBuffer()
1882 ret->buf = out_buff; in xmlSaveToBuffer()
2407 xmlOutputBufferPtr out_buff = NULL; in xmlDocDumpFormatMemoryEnc() local
2443 if ((out_buff = xmlAllocOutputBuffer(conv_hdlr)) == NULL ) { in xmlDocDumpFormatMemoryEnc()
2450 ctxt.buf = out_buff; in xmlDocDumpFormatMemoryEnc()
2457 xmlOutputBufferFlush(out_buff); in xmlDocDumpFormatMemoryEnc()
2458 if (out_buff->conv != NULL) { in xmlDocDumpFormatMemoryEnc()
2459 *doc_txt_len = xmlBufUse(out_buff->conv); in xmlDocDumpFormatMemoryEnc()
2460 *doc_txt_ptr = xmlStrndup(xmlBufContent(out_buff->conv), *doc_txt_len); in xmlDocDumpFormatMemoryEnc()
2462 *doc_txt_len = xmlBufUse(out_buff->buffer); in xmlDocDumpFormatMemoryEnc()
2463 *doc_txt_ptr = xmlStrndup(xmlBufContent(out_buff->buffer),*doc_txt_len); in xmlDocDumpFormatMemoryEnc()
2465 (void)xmlOutputBufferClose(out_buff); in xmlDocDumpFormatMemoryEnc()