Home
last modified time | relevance | path

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

/external/libxml2/
Dvalid.c270 if ((ctxt->vstateMax == 0) || (ctxt->vstateTab == NULL)) { in vstateVPush()
272 ctxt->vstateTab = (xmlValidState *) xmlMalloc(ctxt->vstateMax * in vstateVPush()
273 sizeof(ctxt->vstateTab[0])); in vstateVPush()
274 if (ctxt->vstateTab == NULL) { in vstateVPush()
283 tmp = (xmlValidState *) xmlRealloc(ctxt->vstateTab, in vstateVPush()
284 2 * ctxt->vstateMax * sizeof(ctxt->vstateTab[0])); in vstateVPush()
290 ctxt->vstateTab = tmp; in vstateVPush()
292 ctxt->vstate = &ctxt->vstateTab[ctxt->vstateNr]; in vstateVPush()
293 ctxt->vstateTab[ctxt->vstateNr].elemDecl = elemDecl; in vstateVPush()
294 ctxt->vstateTab[ctxt->vstateNr].node = node; in vstateVPush()
[all …]
Dxmlreader.c2200 if ((reader->ctxt->vctxt.vstateTab != NULL) && in xmlFreeTextReader()
2202 xmlFree(reader->ctxt->vctxt.vstateTab); in xmlFreeTextReader()
2203 reader->ctxt->vctxt.vstateTab = NULL; in xmlFreeTextReader()
/external/libxml2/include/libxml/
Dvalid.h101 xmlValidState *vstateTab; /* array of validation states */ member