Lines Matching refs:vctxt
2357 xmlRelaxNGValidCtxtPtr vctxt; in xmlShellRNGValidate() local
2372 vctxt = xmlRelaxNGNewValidCtxt(relaxngschemas); in xmlShellRNGValidate()
2373 xmlRelaxNGSetValidErrors(vctxt, in xmlShellRNGValidate()
2377 ret = xmlRelaxNGValidateDoc(vctxt, sctxt->doc); in xmlShellRNGValidate()
2386 xmlRelaxNGFreeValidCtxt(vctxt); in xmlShellRNGValidate()
2641 xmlValidCtxt vctxt; in xmlShellValidate() local
2645 vctxt.userData = stderr; in xmlShellValidate()
2646 vctxt.error = (xmlValidityErrorFunc) fprintf; in xmlShellValidate()
2647 vctxt.warning = (xmlValidityWarningFunc) fprintf; in xmlShellValidate()
2650 res = xmlValidateDocument(&vctxt, ctxt->doc); in xmlShellValidate()
2656 res = xmlValidateDtd(&vctxt, ctxt->doc, subset); in xmlShellValidate()