Home
last modified time | relevance | path

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

/external/libxml2/include/libxml/
Dparser.h282 int *attallocs; /* which attribute were allocated */ member
/external/libxml2/
DparserInternals.c1804 if (ctxt->attallocs != NULL) xmlFree(ctxt->attallocs); in xmlFreeParserCtxt()
Dparser.c1589 int *attallocs; in xmlCtxtGrowAttrs() local
1598 attallocs = (int *) xmlMalloc((maxatts / 5) * sizeof(int)); in xmlCtxtGrowAttrs()
1599 if (attallocs == NULL) goto mem_error; in xmlCtxtGrowAttrs()
1600 ctxt->attallocs = attallocs; in xmlCtxtGrowAttrs()
1608 attallocs = (int *) xmlRealloc((void *) ctxt->attallocs, in xmlCtxtGrowAttrs()
1610 if (attallocs == NULL) goto mem_error; in xmlCtxtGrowAttrs()
1611 ctxt->attallocs = attallocs; in xmlCtxtGrowAttrs()
9073 ctxt->attallocs[nratts++] = alloc; in xmlParseStartTag2()
9260 if ((ctxt->attallocs[j] != 0) && (atts[i] != NULL)) in xmlParseStartTag2()
9272 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 */