Home | History | Annotate | Download | only in libxml2

Lines Matching refs:sysid

1082 	              const xmlChar *sysID);
1612 * @sysID: the system ID string
1624 const xmlChar *sysID) {
1644 if (sysID != NULL) {
1652 if (xmlStrEqual(sysID, cur->name)) {
1664 (!xmlStrncmp(sysID, cur->name, len))) {
1670 if (!xmlStrncmp(sysID, cur->name, xmlStrlen(cur->name)))
1687 ret = xmlStrcat(ret, &sysID[lenrewrite]);
1702 (!xmlStrncmp(sysID, cur->name, xmlStrlen(cur->name)))) {
1721 cur->children, NULL, sysID);
1760 if (sysID == NULL)
1824 ret = xmlCatalogListXMLResolve(cur->children, pubID, sysID);
1845 * @sysID: the system ID string
1988 * @sysID: the system ID string
2000 const xmlChar *sysID) {
2007 if ((pubID == NULL) && (sysID == NULL))
2024 ret = xmlCatalogListXMLResolve(catal, urnID, sysID);
2031 if (!xmlStrncmp(sysID, BAD_CAST XML_URN_PUBID, sizeof(XML_URN_PUBID) - 1)) {
2032 urnID = xmlCatalogUnWrapURN(sysID);
2036 "System URN ID %s expanded to NULL\n", sysID);
2060 ret = xmlCatalogXMLResolve(catal->children, pubID, sysID);
2342 xmlChar *sysid = NULL;
2409 cur = xmlParseSGMLCatalogPubid(cur, &sysid);
2443 cur = xmlParseSGMLCatalogPubid(cur, &sysid);
2453 cur = xmlParseSGMLCatalogPubid(cur, &sysid);
2465 if (sysid != NULL)
2466 xmlFree(sysid);
2471 base = xmlStrdup(sysid);
2476 filename = xmlBuildURI(sysid, base);
2493 entry = xmlNewCatalogEntry(type, sysid, NULL, NULL,
2495 res = xmlHashAddEntry(catal->sgml, sysid, entry);
2502 filename = xmlBuildURI(sysid, base);
2514 if (sysid != NULL)
2515 xmlFree(sysid);
2571 * @sysID: the system ID string
2578 xmlCatalogGetSGMLSystem(xmlHashTablePtr catal, const xmlChar *sysID) {
2584 entry = (xmlCatalogEntryPtr) xmlHashLookup(catal, sysID);
2596 * @sysID: the system ID string
2604 const xmlChar *sysID) {
2614 if (sysID != NULL)
2615 ret = xmlCatalogGetSGMLSystem(catal->sgml, sysID);
2770 * @sysID: the system ID string
2778 xmlACatalogResolveSystem(xmlCatalogPtr catal, const xmlChar *sysID) {
2781 if ((sysID == NULL) || (catal == NULL))
2786 "Resolve sysID %s\n", sysID);
2789 ret = xmlCatalogListXMLResolve(catal->xml, NULL, sysID);
2795 sgml = xmlCatalogGetSGMLSystem(catal->sgml, sysID);
2841 * @sysID: the system ID string
2850 const xmlChar * sysID)
2854 if (((pubID == NULL) && (sysID == NULL)) || (catal == NULL))
2858 if ((pubID != NULL) && (sysID != NULL)) {
2860 "Resolve: pubID %s sysID %s\n", pubID, sysID);
2866 "Resolve: sysID %s\n", sysID);
2871 ret = xmlCatalogListXMLResolve(catal->xml, pubID, sysID);
2877 sgml = xmlCatalogSGMLResolve(catal, pubID, sysID);
3296 * @sysID: the system ID string
3304 xmlCatalogResolveSystem(const xmlChar *sysID) {
3310 ret = xmlACatalogResolveSystem(xmlDefaultCatalog, sysID);
3337 * @sysID: the system ID string
3345 xmlCatalogResolve(const xmlChar *pubID, const xmlChar *sysID) {
3351 ret = xmlACatalogResolve(xmlDefaultCatalog, pubID, sysID);
3649 * @sysID: the system ID string
3659 const xmlChar *sysID) {
3666 if ((pubID == NULL) && (sysID == NULL))
3670 if ((pubID != NULL) && (sysID != NULL)) {
3672 "Local Resolve: pubID %s sysID %s\n", pubID, sysID);
3678 "Local Resolve: sysID %s\n", sysID);
3685 ret = xmlCatalogListXMLResolve(catal, pubID, sysID);
3733 * @sysID: the system ID string
3741 xmlCatalogGetSystem(const xmlChar *sysID) {
3755 if (sysID == NULL)
3762 ret = xmlCatalogListXMLResolve(xmlDefaultCatalog->xml, NULL, sysID);
3771 return(xmlCatalogGetSGMLSystem(xmlDefaultCatalog->sgml, sysID));