Searched refs:attallocs (Results 1 – 3 of 3) sorted by relevance
279 int *attallocs; /* which attribute were allocated */ member
1717 if (ctxt->attallocs != NULL) xmlFree(ctxt->attallocs); in xmlFreeParserCtxt()
1434 int *attallocs; in xmlCtxtGrowAttrs() local1443 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()