Home
last modified time | relevance | path

Searched refs:attallocs (Results 1 – 3 of 3) sorted by relevance

/external/libxml2/include/libxml/
Dparser.h279 int *attallocs; /* which attribute were allocated */ member
/external/libxml2/
DparserInternals.c1717 if (ctxt->attallocs != NULL) xmlFree(ctxt->attallocs); in xmlFreeParserCtxt()
Dparser.c1434 int *attallocs; in xmlCtxtGrowAttrs() local
1443 attallocs = (int *) xmlMalloc((maxatts / 5) * sizeof(int)); in xmlCtxtGrowAttrs()
1444 if (attallocs == NULL) goto mem_error; in xmlCtxtGrowAttrs()
1445 ctxt->attallocs = attallocs; in xmlCtxtGrowAttrs()
1453 attallocs = (int *) xmlRealloc((void *) ctxt->attallocs, in xmlCtxtGrowAttrs()
1455 if (attallocs == NULL) goto mem_error; in xmlCtxtGrowAttrs()
1456 ctxt->attallocs = attallocs; in xmlCtxtGrowAttrs()
8844 ctxt->attallocs[nratts++] = alloc; in xmlParseStartTag2()
9031 if ((ctxt->attallocs[j] != 0) && (atts[i] != NULL)) in xmlParseStartTag2()
9043 if ((ctxt->attallocs[j] != 0) && (atts[i] != NULL)) in xmlParseStartTag2()