Lines Matching refs:vctxt
2362 xmlRelaxNGValidCtxtPtr vctxt; in xmlShellRNGValidate() local
2377 vctxt = xmlRelaxNGNewValidCtxt(relaxngschemas); in xmlShellRNGValidate()
2378 xmlRelaxNGSetValidErrors(vctxt, in xmlShellRNGValidate()
2382 ret = xmlRelaxNGValidateDoc(vctxt, sctxt->doc); in xmlShellRNGValidate()
2391 xmlRelaxNGFreeValidCtxt(vctxt); in xmlShellRNGValidate()
2646 xmlValidCtxt vctxt; in xmlShellValidate() local
2650 vctxt.userData = stderr; in xmlShellValidate()
2651 vctxt.error = (xmlValidityErrorFunc) fprintf; in xmlShellValidate()
2652 vctxt.warning = (xmlValidityWarningFunc) fprintf; in xmlShellValidate()
2655 res = xmlValidateDocument(&vctxt, ctxt->doc); in xmlShellValidate()
2661 res = xmlValidateDtd(&vctxt, ctxt->doc, subset); in xmlShellValidate()