Lines Matching defs:depth
203 * arbitrary depth limit for the XML documents that we allow to
246 void *user_data, int depth, const xmlChar *URL,
1746 "Excessive depth in document: %d use XML_PARSE_HUGE option\n",
2697 if (((ctxt->depth > 40) &&
2699 (ctxt->depth > 1024)) {
2754 ctxt->depth++;
2757 ctxt->depth--;
2797 ctxt->depth++;
2800 ctxt->depth--;
6204 * @depth: the level of recursion
6234 int depth) {
6239 if (((depth > 128) && ((ctxt->options & XML_PARSE_HUGE) == 0)) ||
6240 (depth > 2048)) {
6242 "xmlParseElementChildrenContentDecl : depth %d too deep, use XML_PARSE_HUGE\n",
6243 depth);
6255 depth + 1);
6388 depth + 1);
6771 int depth = 0;
6803 while (((depth >= 0) && (RAW != 0)) &&
6806 depth++;
6811 if (--depth >= 0) SKIP(3);
7206 ctxt->depth++;
7209 ctxt->depth--;
7212 ctxt->depth++;
7214 user_data, ctxt->depth, ent->URI,
7216 ctxt->depth--;
7324 ctxt->depth++;
7327 ctxt->depth--;
7330 ctxt->depth++;
7332 ctxt->sax, user_data, ctxt->depth,
7334 ctxt->depth--;
9944 "Excessive depth in document: %d use XML_PARSE_HUGE option\n",
10866 ctxt->depth = 0;
12875 if (((ctx->depth > 40) && ((ctx->options & XML_PARSE_HUGE) == 0)) ||
12876 (ctx->depth > 1024)) {
12979 ctxt->depth = ctx->depth + 1;
13056 * @depth: Used for loop detection, use 0
13070 void *user_data, int depth, const xmlChar *URL,
13080 if (((depth > 40) &&
13082 (depth > 1024)) {
13183 ctxt->depth = depth;
13262 * @depth: Used for loop detection, use 0
13279 int depth, const xmlChar *URL, const xmlChar *ID, xmlNodePtr *lst) {
13280 return(xmlParseExternalEntityPrivate(doc, NULL, sax, user_data, depth, URL,
13289 * @depth: Used for loop detection, use 0
13306 void *user_data, int depth, const xmlChar *string, xmlNodePtr *lst) {
13308 depth, string, lst, 0 );
13348 if (((oldctxt->depth > 40) && ((oldctxt->options & XML_PARSE_HUGE) == 0)) ||
13349 (oldctxt->depth > 1024)) {
13419 ctxt->depth = oldctxt->depth + 1;
13738 * @depth: Used for loop detection, use 0
13760 void *user_data, int depth, const xmlChar *string, xmlNodePtr *lst,
13769 if (depth > 40) {
13833 ctxt->depth = depth;
14865 ctxt->depth = 0;