Lines Matching refs:vctxt
2362 xmlRelaxNGValidCtxtPtr vctxt; in xmlShellRNGValidate() local
2374 vctxt = xmlRelaxNGNewValidCtxt(relaxngschemas); in xmlShellRNGValidate()
2375 xmlRelaxNGSetValidErrors(vctxt, xmlGenericError, xmlGenericError, NULL); in xmlShellRNGValidate()
2376 ret = xmlRelaxNGValidateDoc(vctxt, sctxt->doc); in xmlShellRNGValidate()
2385 xmlRelaxNGFreeValidCtxt(vctxt); in xmlShellRNGValidate()
2640 xmlValidCtxt vctxt; in xmlShellValidate() local
2644 vctxt.userData = NULL; in xmlShellValidate()
2645 vctxt.error = xmlGenericError; in xmlShellValidate()
2646 vctxt.warning = xmlGenericError; in xmlShellValidate()
2649 res = xmlValidateDocument(&vctxt, ctxt->doc); in xmlShellValidate()
2655 res = xmlValidateDtd(&vctxt, ctxt->doc, subset); in xmlShellValidate()