Home
last modified time | relevance | path

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

/external/libxml2/include/libxml/
Dparser.h280 void * *pushTab; /* array of data for push */ member
/external/libxml2/
Dparser.c1616 tmp2 = (void **) xmlRealloc((void * *)ctxt->pushTab, in nameNsPush()
1618 sizeof(ctxt->pushTab[0])); in nameNsPush()
1623 ctxt->pushTab = tmp2; in nameNsPush()
1627 ctxt->pushTab[ctxt->nameNr * 3] = (void *) prefix; in nameNsPush()
1628 ctxt->pushTab[ctxt->nameNr * 3 + 1] = (void *) URI; in nameNsPush()
1629 ctxt->pushTab[ctxt->nameNr * 3 + 2] = (void *) (long) nsNr; in nameNsPush()
10917 (void *) ctxt->pushTab[ctxt->nameNr * 3 - 3], in xmlParseTryOrFinish()
10918 (void *) ctxt->pushTab[ctxt->nameNr * 3 - 2], 0, in xmlParseTryOrFinish()
10919 (int) (long) ctxt->pushTab[ctxt->nameNr * 3 - 1], 0); in xmlParseTryOrFinish()
11554 ctxt->pushTab = (void **) xmlMalloc(ctxt->nameMax * 3 * sizeof(xmlChar *)); in xmlCreatePushParserCtxt()
[all …]
DparserInternals.c1716 if (ctxt->pushTab != NULL) xmlFree(ctxt->pushTab); in xmlFreeParserCtxt()