Lines Matching refs:vctxt
2361 xmlRelaxNGValidCtxtPtr vctxt; in xmlShellRNGValidate() local
2376 vctxt = xmlRelaxNGNewValidCtxt(relaxngschemas); in xmlShellRNGValidate()
2377 xmlRelaxNGSetValidErrors(vctxt, in xmlShellRNGValidate()
2381 ret = xmlRelaxNGValidateDoc(vctxt, sctxt->doc); in xmlShellRNGValidate()
2390 xmlRelaxNGFreeValidCtxt(vctxt); in xmlShellRNGValidate()
2645 xmlValidCtxt vctxt; in xmlShellValidate() local
2649 vctxt.userData = stderr; in xmlShellValidate()
2650 vctxt.error = (xmlValidityErrorFunc) fprintf; in xmlShellValidate()
2651 vctxt.warning = (xmlValidityWarningFunc) fprintf; in xmlShellValidate()
2654 res = xmlValidateDocument(&vctxt, ctxt->doc); in xmlShellValidate()
2660 res = xmlValidateDtd(&vctxt, ctxt->doc, subset); in xmlShellValidate()