Home
last modified time | relevance | path

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

/external/libxml2/include/libxml/
Dparser.h280 int *attallocs; /* which attribute were allocated */ member
/external/libxml2/
DparserInternals.c1717 if (ctxt->attallocs != NULL) xmlFree(ctxt->attallocs); in xmlFreeParserCtxt()
Dparser.c1440 int *attallocs; in xmlCtxtGrowAttrs() local
1449 attallocs = (int *) xmlMalloc((maxatts / 5) * sizeof(int)); in xmlCtxtGrowAttrs()
1450 if (attallocs == NULL) goto mem_error; in xmlCtxtGrowAttrs()
1451 ctxt->attallocs = attallocs; in xmlCtxtGrowAttrs()
1459 attallocs = (int *) xmlRealloc((void *) ctxt->attallocs, in xmlCtxtGrowAttrs()
1461 if (attallocs == NULL) goto mem_error; in xmlCtxtGrowAttrs()
1462 ctxt->attallocs = attallocs; in xmlCtxtGrowAttrs()
8851 ctxt->attallocs[nratts++] = alloc; in xmlParseStartTag2()
9038 if ((ctxt->attallocs[j] != 0) && (atts[i] != NULL)) in xmlParseStartTag2()
9050 if ((ctxt->attallocs[j] != 0) && (atts[i] != NULL)) in xmlParseStartTag2()
/external/libxml2/patches/
D0001-Add-ICU-support-for-libxml.patch468 int *attallocs; /* which attribute were allocated */