xslt              275 lib/common/schemas.c     char *xslt = NULL,
xslt              283 lib/common/schemas.c         xslt = pcmk__xml_artefact_path(pcmk__xml_artefact_ns_legacy_xslt,
xslt              290 lib/common/schemas.c     } else if (stat(xslt, &s) == 0) {
xslt              293 lib/common/schemas.c         free(xslt);
xslt              294 lib/common/schemas.c         xslt = pcmk__xml_artefact_path(pcmk__xml_artefact_ns_legacy_xslt,
xslt              296 lib/common/schemas.c         if (stat(xslt, &s) != 0) {
xslt              298 lib/common/schemas.c             crm_debug("Upgrade-enter transform %s.xsl not found", xslt);
xslt              299 lib/common/schemas.c             free(xslt);
xslt              302 lib/common/schemas.c             xslt = pcmk__xml_artefact_path(pcmk__xml_artefact_ns_legacy_xslt,
xslt              304 lib/common/schemas.c             if (stat(xslt, &s) != 0) {
xslt              305 lib/common/schemas.c                 crm_debug("Upgrade-enter transform %s.xsl not found, either", xslt);
xslt              306 lib/common/schemas.c                 free(xslt);
xslt              307 lib/common/schemas.c                 xslt = NULL;
xslt              311 lib/common/schemas.c         if (xslt != NULL) {
xslt              313 lib/common/schemas.c             memcpy(strrchr(xslt, '-') + 1, "leave", sizeof("leave") - 1);
xslt              314 lib/common/schemas.c             transform_onleave = (stat(xslt, &s) == 0);
xslt              315 lib/common/schemas.c             free(xslt);
xslt              322 lib/common/schemas.c         crm_err("Upgrade transform %s not found", xslt);
xslt              323 lib/common/schemas.c         free(xslt);
xslt              908 lib/common/schemas.c     xsltStylesheet *xslt = NULL;
xslt              930 lib/common/schemas.c     xslt = xsltParseStylesheetFile((pcmkXmlStr) xform);
xslt              931 lib/common/schemas.c     CRM_CHECK(xslt != NULL, goto cleanup);
xslt              933 lib/common/schemas.c     res = xsltApplyStylesheet(xslt, doc, NULL);
xslt              941 lib/common/schemas.c                                            &emergency_txt_len, res, xslt);
xslt              951 lib/common/schemas.c     if (xslt) {
xslt              952 lib/common/schemas.c         xsltFreeStylesheet(xslt);