Home
last modified time | relevance | path

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

/external/libxml2/
Dparser.c1191 int *attallocs; in xmlCtxtGrowAttrs() local
1200 attallocs = (int *) xmlMalloc((maxatts / 5) * sizeof(int)); in xmlCtxtGrowAttrs()
1201 if (attallocs == NULL) goto mem_error; in xmlCtxtGrowAttrs()
1202 ctxt->attallocs = attallocs; in xmlCtxtGrowAttrs()
1210 attallocs = (int *) xmlRealloc((void *) ctxt->attallocs, in xmlCtxtGrowAttrs()
1212 if (attallocs == NULL) goto mem_error; in xmlCtxtGrowAttrs()
1213 ctxt->attallocs = attallocs; in xmlCtxtGrowAttrs()
8091 ctxt->attallocs[nratts++] = alloc; in xmlParseStartTag2()
8272 if ((ctxt->attallocs[j] != 0) && (atts[i] != NULL)) in xmlParseStartTag2()
8284 if ((ctxt->attallocs[j] != 0) && (atts[i] != NULL)) in xmlParseStartTag2()
DparserInternals.c1715 if (ctxt->attallocs != NULL) xmlFree(ctxt->attallocs); in xmlFreeParserCtxt()
/external/libxml2/include/libxml/
Dparser.h279 int *attallocs; /* which attribute were allocated */ member