Home | History | Annotate | Download | only in libxml2

Lines Matching defs:depth

176  * arbitrary depth limit for the XML documents that we allow to
207 void *user_data, int depth, const xmlChar *URL,
1558 "Excessive depth in document: %d use XML_PARSE_HUGE option\n",
2491 if (((ctxt->depth > 40) &&
2493 (ctxt->depth > 1024)) {
2548 ctxt->depth++;
2551 ctxt->depth--;
2592 ctxt->depth++;
2595 ctxt->depth--;
6288 int depth = 0;
6320 while ((depth >= 0) && (RAW != 0)) {
6322 depth++;
6327 if (--depth >= 0) SKIP(3);
6715 ctxt->depth++;
6718 ctxt->depth--;
6721 ctxt->depth++;
6723 user_data, ctxt->depth, ent->URI,
6725 ctxt->depth--;
6830 ctxt->depth++;
6833 ctxt->depth--;
6836 ctxt->depth++;
6838 ctxt->sax, user_data, ctxt->depth,
6840 ctxt->depth--;
9350 "Excessive depth in document: %d use XML_PARSE_HUGE option\n",
10239 ctxt->depth = 0;
12049 if (((ctx->depth > 40) && ((ctx->options & XML_PARSE_HUGE) == 0)) ||
12050 (ctx->depth > 1024)) {
12159 ctxt->depth = ctx->depth + 1;
12236 * @depth: Used for loop detection, use 0
12250 void *user_data, int depth, const xmlChar *URL,
12260 if (((depth > 40) &&
12262 (depth > 1024)) {
12363 ctxt->depth = depth;
12440 * @depth: Used for loop detection, use 0
12457 int depth, const xmlChar *URL, const xmlChar *ID, xmlNodePtr *lst) {
12458 return(xmlParseExternalEntityPrivate(doc, NULL, sax, user_data, depth, URL,
12467 * @depth: Used for loop detection, use 0
12484 void *user_data, int depth, const xmlChar *string, xmlNodePtr *lst) {
12486 depth, string, lst, 0 );
12523 if (((oldctxt->depth > 40) && ((oldctxt->options & XML_PARSE_HUGE) == 0)) ||
12524 (oldctxt->depth > 1024)) {
12589 ctxt->depth = oldctxt->depth + 1;
12884 * @depth: Used for loop detection, use 0
12906 void *user_data, int depth, const xmlChar *string, xmlNodePtr *lst,
12915 if (depth > 40) {
12979 ctxt->depth = depth;
13975 ctxt->depth = 0;