Searched defs:doc_txt_len (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/libxml/src/
H A Dxmlsave.c2159 * @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);
2171 xmlDocDumpFormatMemoryEnc(xmlDocPtr out_doc, xmlChar **doc_txt_ptr, int * doc_txt_len, const char * txt_encoding, int format) argument
2291 xmlDocDumpMemoryEnc(xmlDocPtr out_doc, xmlChar **doc_txt_ptr, int * doc_txt_len, const char * txt_encoding) argument
[all...]
H A Dtestapi.c19887 int * doc_txt_len; /* Length of the generated XML text */ local
19902 doc_txt_len = gen_int_ptr(n_doc_txt_len, 2);
19906 xmlDocDumpFormatMemoryEnc(out_doc, doc_txt_ptr, doc_txt_len, (const char *)txt_encoding, format);
19910 des_int_ptr(n_doc_txt_len, doc_txt_len, 2);
19993 int * doc_txt_len; /* Length of the generated XML text */ local
20005 doc_txt_len = gen_int_ptr(n_doc_txt_len, 2);
20008 xmlDocDumpMemoryEnc(out_doc, doc_txt_ptr, doc_txt_len, (const char *)txt_encoding);
20012 des_int_ptr(n_doc_txt_len, doc_txt_len, 2);
[all...]
/external/chromium_org/third_party/libxslt/libxslt/
H A Dxsltutils.c1721 * @doc_txt_len: Length of the generated XML text
1731 xsltSaveResultToString(xmlChar **doc_txt_ptr, int * doc_txt_len, argument
1737 *doc_txt_len = 0;
1758 *doc_txt_len = buf->conv->use;
1759 *doc_txt_ptr = xmlStrndup(buf->conv->content, *doc_txt_len);
1761 *doc_txt_len = buf->buffer->use;
1762 *doc_txt_ptr = xmlStrndup(buf->buffer->content, *doc_txt_len);
/external/libxml2/
H A Dxmlsave.c2398 * @doc_txt_len: Length of the generated XML text
2411 int * doc_txt_len, const char * txt_encoding,
2418 if (doc_txt_len == NULL) {
2419 doc_txt_len = &dummy; /* Continue, caller just won't get length */
2423 *doc_txt_len = 0;
2428 *doc_txt_len = 0;
2467 *doc_txt_len = xmlBufUse(out_buff->conv);
2468 *doc_txt_ptr = xmlStrndup(xmlBufContent(out_buff->conv), *doc_txt_len);
2470 *doc_txt_len = xmlBufUse(out_buff->buffer);
2471 *doc_txt_ptr = xmlStrndup(xmlBufContent(out_buff->buffer),*doc_txt_len);
2410 xmlDocDumpFormatMemoryEnc(xmlDocPtr out_doc, xmlChar **doc_txt_ptr, int * doc_txt_len, const char * txt_encoding, int format) argument
2530 xmlDocDumpMemoryEnc(xmlDocPtr out_doc, xmlChar **doc_txt_ptr, int * doc_txt_len, const char * txt_encoding) argument
[all...]

Completed in 2117 milliseconds