Lines Matching refs:doc_buff
1470 void * doc_buff; member
1819 if ( ctxt->doc_buff != NULL ) { in xmlFreeHTTPWriteCtxt()
1823 xmlFreeZMemBuff( ctxt->doc_buff ); in xmlFreeHTTPWriteCtxt()
1828 xmlOutputBufferClose( ctxt->doc_buff ); in xmlFreeHTTPWriteCtxt()
1912 ctxt->doc_buff = xmlCreateZMemBuff(compression); in xmlIOHTTPOpenW()
1918 ctxt->doc_buff = xmlAllocOutputBufferInternal(NULL); in xmlIOHTTPOpenW()
1921 if (ctxt->doc_buff == NULL) { in xmlIOHTTPOpenW()
1981 if ( ( ctxt == NULL ) || ( ctxt->doc_buff == NULL ) || ( buffer == NULL ) ) in xmlIOHTTPWrite()
1990 len = xmlZMemBuffAppend( ctxt->doc_buff, buffer, len ); in xmlIOHTTPWrite()
1994 len = xmlOutputBufferWrite( ctxt->doc_buff, len, buffer ); in xmlIOHTTPWrite()
2055 content_lgth = xmlZMemBuffGetContent( ctxt->doc_buff, &http_content ); in xmlIOHTTPCloseWrite()
2063 xmlOutputBufferPtr dctxt = ctxt->doc_buff; in xmlIOHTTPCloseWrite()