Home | History | Annotate | Download | only in libxml2

Lines Matching refs:sysid

1088 	              const xmlChar *sysID);
1616 * @sysID: the system ID string
1628 const xmlChar *sysID) {
1648 if (sysID != NULL) {
1656 if (xmlStrEqual(sysID, cur->name)) {
1668 (!xmlStrncmp(sysID, cur->name, len))) {
1674 if (!xmlStrncmp(sysID, cur->name, xmlStrlen(cur->name)))
1691 ret = xmlStrcat(ret, &sysID[lenrewrite]);
1706 (!xmlStrncmp(sysID, cur->name, xmlStrlen(cur->name)))) {
1725 cur->children, NULL, sysID);
1764 if (sysID == NULL)
1828 ret = xmlCatalogListXMLResolve(cur->children, pubID, sysID);
1849 * @sysID: the system ID string
1992 * @sysID: the system ID string
2004 const xmlChar *sysID) {
2011 if ((pubID == NULL) && (sysID == NULL))
2028 ret = xmlCatalogListXMLResolve(catal, urnID, sysID);
2035 if (!xmlStrncmp(sysID, BAD_CAST XML_URN_PUBID, sizeof(XML_URN_PUBID) - 1)) {
2036 urnID = xmlCatalogUnWrapURN(sysID);
2040 "System URN ID %s expanded to NULL\n", sysID);
2064 ret = xmlCatalogXMLResolve(catal->children, pubID, sysID);
2346 xmlChar *sysid = NULL;
2413 cur = xmlParseSGMLCatalogPubid(cur, &sysid);
2447 cur = xmlParseSGMLCatalogPubid(cur, &sysid);
2457 cur = xmlParseSGMLCatalogPubid(cur, &sysid);
2469 if (sysid != NULL)
2470 xmlFree(sysid);
2475 base = xmlStrdup(sysid);
2480 filename = xmlBuildURI(sysid, base);
2497 entry = xmlNewCatalogEntry(type, sysid, NULL, NULL,
2499 res = xmlHashAddEntry(catal->sgml, sysid, entry);
2506 filename = xmlBuildURI(sysid, base);
2518 if (sysid != NULL)
2519 xmlFree(sysid);
2575 * @sysID: the system ID string
2582 xmlCatalogGetSGMLSystem(xmlHashTablePtr catal, const xmlChar *sysID) {
2588 entry = (xmlCatalogEntryPtr) xmlHashLookup(catal, sysID);
2600 * @sysID: the system ID string
2608 const xmlChar *sysID) {
2618 if (sysID != NULL)
2619 ret = xmlCatalogGetSGMLSystem(catal->sgml, sysID);
2774 * @sysID: the system ID string
2782 xmlACatalogResolveSystem(xmlCatalogPtr catal, const xmlChar *sysID) {
2785 if ((sysID == NULL) || (catal == NULL))
2790 "Resolve sysID %s\n", sysID);
2793 ret = xmlCatalogListXMLResolve(catal->xml, NULL, sysID);
2799 sgml = xmlCatalogGetSGMLSystem(catal->sgml, sysID);
2845 * @sysID: the system ID string
2854 const xmlChar * sysID)
2858 if (((pubID == NULL) && (sysID == NULL)) || (catal == NULL))
2862 if ((pubID != NULL) && (sysID != NULL)) {
2864 "Resolve: pubID %s sysID %s\n", pubID, sysID);
2870 "Resolve: sysID %s\n", sysID);
2875 ret = xmlCatalogListXMLResolve(catal->xml, pubID, sysID);
2881 sgml = xmlCatalogSGMLResolve(catal, pubID, sysID);
3300 * @sysID: the system ID string
3308 xmlCatalogResolveSystem(const xmlChar *sysID) {
3314 ret = xmlACatalogResolveSystem(xmlDefaultCatalog, sysID);
3341 * @sysID: the system ID string
3349 xmlCatalogResolve(const xmlChar *pubID, const xmlChar *sysID) {
3355 ret = xmlACatalogResolve(xmlDefaultCatalog, pubID, sysID);
3653 * @sysID: the system ID string
3663 const xmlChar *sysID) {
3670 if ((pubID == NULL) && (sysID == NULL))
3674 if ((pubID != NULL) && (sysID != NULL)) {
3676 "Local Resolve: pubID %s sysID %s\n", pubID, sysID);
3682 "Local Resolve: sysID %s\n", sysID);
3689 ret = xmlCatalogListXMLResolve(catal, pubID, sysID);
3737 * @sysID: the system ID string
3745 xmlCatalogGetSystem(const xmlChar *sysID) {
3759 if (sysID == NULL)
3766 ret = xmlCatalogListXMLResolve(xmlDefaultCatalog->xml, NULL, sysID);
3775 return(xmlCatalogGetSGMLSystem(xmlDefaultCatalog->sgml, sysID));