Home | History | Annotate | Download | only in libxml2

Lines Matching defs:depth

183  * arbitrary depth limit for the XML documents that we allow to
215 void *user_data, int depth, const xmlChar *URL,
1707 "Excessive depth in document: %d use XML_PARSE_HUGE option\n",
2639 if (((ctxt->depth > 40) &&
2641 (ctxt->depth > 1024)) {
2696 ctxt->depth++;
2699 ctxt->depth--;
2740 ctxt->depth++;
2743 ctxt->depth--;
5947 * @depth: the level of recursion
5977 int depth) {
5982 if (((depth > 128) && ((ctxt->options & XML_PARSE_HUGE) == 0)) ||
5983 (depth > 2048)) {
5985 "xmlParseElementChildrenContentDecl : depth %d too deep, use XML_PARSE_HUGE\n",
5986 depth);
5998 depth + 1);
6131 depth + 1);
6512 int depth = 0;
6544 while ((depth >= 0) && (RAW != 0)) {
6546 depth++;
6551 if (--depth >= 0) SKIP(3);
6939 ctxt->depth++;
6942 ctxt->depth--;
6945 ctxt->depth++;
6947 user_data, ctxt->depth, ent->URI,
6949 ctxt->depth--;
7055 ctxt->depth++;
7058 ctxt->depth--;
7061 ctxt->depth++;
7063 ctxt->sax, user_data, ctxt->depth,
7065 ctxt->depth--;
9574 "Excessive depth in document: %d use XML_PARSE_HUGE option\n",
10483 ctxt->depth = 0;
12344 if (((ctx->depth > 40) && ((ctx->options & XML_PARSE_HUGE) == 0)) ||
12345 (ctx->depth > 1024)) {
12438 ctxt->depth = ctx->depth + 1;
12515 * @depth: Used for loop detection, use 0
12529 void *user_data, int depth, const xmlChar *URL,
12539 if (((depth > 40) &&
12541 (depth > 1024)) {
12642 ctxt->depth = depth;
12721 * @depth: Used for loop detection, use 0
12738 int depth, const xmlChar *URL, const xmlChar *ID, xmlNodePtr *lst) {
12739 return(xmlParseExternalEntityPrivate(doc, NULL, sax, user_data, depth, URL,
12748 * @depth: Used for loop detection, use 0
12765 void *user_data, int depth, const xmlChar *string, xmlNodePtr *lst) {
12767 depth, string, lst, 0 );
12807 if (((oldctxt->depth > 40) && ((oldctxt->options & XML_PARSE_HUGE) == 0)) ||
12808 (oldctxt->depth > 1024)) {
12878 ctxt->depth = oldctxt->depth + 1;
13197 * @depth: Used for loop detection, use 0
13219 void *user_data, int depth, const xmlChar *string, xmlNodePtr *lst,
13228 if (depth > 40) {
13292 ctxt->depth = depth;
14325 ctxt->depth = 0;