Lines Matching refs:out_buff
1864 xmlOutputBufferPtr out_buff; in xmlSaveToBuffer() local
1878 out_buff = xmlOutputBufferCreateBuffer(buffer, handler); in xmlSaveToBuffer()
1879 if (out_buff == NULL) { in xmlSaveToBuffer()
1885 ret->buf = out_buff; in xmlSaveToBuffer()
2415 xmlOutputBufferPtr out_buff = NULL; in xmlDocDumpFormatMemoryEnc() local
2451 if ((out_buff = xmlAllocOutputBuffer(conv_hdlr)) == NULL ) { in xmlDocDumpFormatMemoryEnc()
2458 ctxt.buf = out_buff; in xmlDocDumpFormatMemoryEnc()
2465 xmlOutputBufferFlush(out_buff); in xmlDocDumpFormatMemoryEnc()
2466 if (out_buff->conv != NULL) { in xmlDocDumpFormatMemoryEnc()
2467 *doc_txt_len = xmlBufUse(out_buff->conv); in xmlDocDumpFormatMemoryEnc()
2468 *doc_txt_ptr = xmlStrndup(xmlBufContent(out_buff->conv), *doc_txt_len); in xmlDocDumpFormatMemoryEnc()
2470 *doc_txt_len = xmlBufUse(out_buff->buffer); in xmlDocDumpFormatMemoryEnc()
2471 *doc_txt_ptr = xmlStrndup(xmlBufContent(out_buff->buffer),*doc_txt_len); in xmlDocDumpFormatMemoryEnc()
2473 (void)xmlOutputBufferClose(out_buff); in xmlDocDumpFormatMemoryEnc()