Home | History | Annotate | Download | only in src

Lines Matching refs:doc_txt_len

2159  * @doc_txt_len:  Length of the generated XML text
2172 int * doc_txt_len, const char * txt_encoding,
2179 if (doc_txt_len == NULL) {
2180 doc_txt_len = &dummy; /* Continue, caller just won't get length */
2184 *doc_txt_len = 0;
2189 *doc_txt_len = 0;
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);
2236 if ((*doc_txt_ptr == NULL) && (*doc_txt_len > 0)) {
2237 *doc_txt_len = 0;
2282 * @doc_txt_len: Length of the generated XML text
2292 int * doc_txt_len, const char * txt_encoding) {
2293 xmlDocDumpFormatMemoryEnc(out_doc, doc_txt_ptr, doc_txt_len,