• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libxml2-2.7.2/

Lines Matching refs:vstateNr

285     if (ctxt->vstateNr >= ctxt->vstateMax) {
297 ctxt->vstate = &ctxt->vstateTab[ctxt->vstateNr];
298 ctxt->vstateTab[ctxt->vstateNr].elemDecl = elemDecl;
299 ctxt->vstateTab[ctxt->vstateNr].node = node;
304 ctxt->vstateTab[ctxt->vstateNr].exec =
307 ctxt->vstateTab[ctxt->vstateNr].exec = NULL;
314 return(ctxt->vstateNr++);
321 if (ctxt->vstateNr < 1) return(-1);
322 ctxt->vstateNr--;
323 elemDecl = ctxt->vstateTab[ctxt->vstateNr].elemDecl;
324 ctxt->vstateTab[ctxt->vstateNr].elemDecl = NULL;
325 ctxt->vstateTab[ctxt->vstateNr].node = NULL;
327 xmlRegFreeExecCtxt(ctxt->vstateTab[ctxt->vstateNr].exec);
329 ctxt->vstateTab[ctxt->vstateNr].exec = NULL;
330 if (ctxt->vstateNr >= 1)
331 ctxt->vstate = &ctxt->vstateTab[ctxt->vstateNr - 1];
334 return(ctxt->vstateNr);
377 int i = ctxt->vstateNr - 1;
379 if (ctxt->vstateNr > MAX_RECURSE) {
391 if (ctxt->vstateNr >= ctxt->vstateMax) {
412 return(ctxt->vstateNr);
413 ctxt->vstateTab[ctxt->vstateNr].cont = cont;
414 ctxt->vstateTab[ctxt->vstateNr].node = node;
415 ctxt->vstateTab[ctxt->vstateNr].depth = depth;
416 ctxt->vstateTab[ctxt->vstateNr].occurs = occurs;
417 ctxt->vstateTab[ctxt->vstateNr].state = state;
418 return(ctxt->vstateNr++);
423 if (ctxt->vstateNr <= 1) return(-1);
424 ctxt->vstateNr--;
426 ctxt->vstate->cont = ctxt->vstateTab[ctxt->vstateNr].cont;
427 ctxt->vstate->node = ctxt->vstateTab[ctxt->vstateNr].node;
428 ctxt->vstate->depth = ctxt->vstateTab[ctxt->vstateNr].depth;
429 ctxt->vstate->occurs = ctxt->vstateTab[ctxt->vstateNr].occurs;
430 ctxt->vstate->state = ctxt->vstateTab[ctxt->vstateNr].state;
431 return(ctxt->vstateNr);
613 ctxt->vstateNr - 1);
614 for (i = 0, j = ctxt->vstateNr - 1;(i < 3) && (j > 0);i++,j--)
2665 if ((ctxt != NULL) && (ctxt->vstateNr != 0)) {
2986 if ((ctxt != NULL) && (ctxt->vstateNr != 0)) {
5380 ctxt->vstateNr = 1;
5469 ctxt->vstateNr = 1;
5761 if ((ctxt->vstateNr > 0) && (ctxt->vstate != NULL)) {
5853 if ((ctxt->vstateNr > 0) && (ctxt->vstate != NULL)) {
5927 if ((ctxt->vstateNr > 0) && (ctxt->vstate != NULL)) {
6060 * If vstateNr is not zero that means continuous validation is
6063 if (ctxt->vstateNr == 0) {