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

/external/libxml2/include/libxml/
H A Dparser.h282 int *attallocs; /* which attribute were allocated */ member in struct:_xmlParserCtxt
/external/libxml2/
H A Dparser.c1654 int *attallocs; local
1663 attallocs = (int *) xmlMalloc((maxatts / 5) * sizeof(int));
1664 if (attallocs == NULL) goto mem_error;
1665 ctxt->attallocs = attallocs;
1673 attallocs = (int *) xmlRealloc((void *) ctxt->attallocs,
1675 if (attallocs == NULL) goto mem_error;
1676 ctxt->attallocs = attallocs;
[all...]
H A DparserInternals.c1781 if (ctxt->attallocs != NULL) xmlFree(ctxt->attallocs);

Completed in 72 milliseconds