Home | History | Annotate | Download | only in src

Lines Matching refs:sysid

1085 	              const xmlChar *sysID);
1615 * @sysID: the system ID string
1627 const xmlChar *sysID) {
1647 if (sysID != NULL) {
1655 if (xmlStrEqual(sysID, cur->name)) {
1667 (!xmlStrncmp(sysID, cur->name, len))) {
1673 if (!xmlStrncmp(sysID, cur->name, xmlStrlen(cur->name)))
1690 ret = xmlStrcat(ret, &sysID[lenrewrite]);
1705 (!xmlStrncmp(sysID, cur->name, xmlStrlen(cur->name)))) {
1724 cur->children, NULL, sysID);
1763 if (sysID == NULL)
1827 ret = xmlCatalogListXMLResolve(cur->children, pubID, sysID);
1848 * @sysID: the system ID string
1991 * @sysID: the system ID string
2003 const xmlChar *sysID) {
2010 if ((pubID == NULL) && (sysID == NULL))
2027 ret = xmlCatalogListXMLResolve(catal, urnID, sysID);
2034 if (!xmlStrncmp(sysID, BAD_CAST XML_URN_PUBID, sizeof(XML_URN_PUBID) - 1)) {
2035 urnID = xmlCatalogUnWrapURN(sysID);
2039 "System URN ID %s expanded to NULL\n", sysID);
2063 ret = xmlCatalogXMLResolve(catal->children, pubID, sysID);
2345 xmlChar *sysid = NULL;
2412 cur = xmlParseSGMLCatalogPubid(cur, &sysid);
2446 cur = xmlParseSGMLCatalogPubid(cur, &sysid);
2456 cur = xmlParseSGMLCatalogPubid(cur, &sysid);
2468 if (sysid != NULL)
2469 xmlFree(sysid);
2474 base = xmlStrdup(sysid);
2479 filename = xmlBuildURI(sysid, base);
2496 entry = xmlNewCatalogEntry(type, sysid, NULL, NULL,
2498 res = xmlHashAddEntry(catal->sgml, sysid, entry);
2505 filename = xmlBuildURI(sysid, base);
2517 if (sysid != NULL)
2518 xmlFree(sysid);
2574 * @sysID: the system ID string
2581 xmlCatalogGetSGMLSystem(xmlHashTablePtr catal, const xmlChar *sysID) {
2587 entry = (xmlCatalogEntryPtr) xmlHashLookup(catal, sysID);
2599 * @sysID: the system ID string
2607 const xmlChar *sysID) {
2617 if (sysID != NULL)
2618 ret = xmlCatalogGetSGMLSystem(catal->sgml, sysID);
2773 * @sysID: the system ID string
2781 xmlACatalogResolveSystem(xmlCatalogPtr catal, const xmlChar *sysID) {
2784 if ((sysID == NULL) || (catal == NULL))
2789 "Resolve sysID %s\n", sysID);
2792 ret = xmlCatalogListXMLResolve(catal->xml, NULL, sysID);
2798 sgml = xmlCatalogGetSGMLSystem(catal->sgml, sysID);
2844 * @sysID: the system ID string
2853 const xmlChar * sysID)
2857 if (((pubID == NULL) && (sysID == NULL)) || (catal == NULL))
2861 if ((pubID != NULL) && (sysID != NULL)) {
2863 "Resolve: pubID %s sysID %s\n", pubID, sysID);
2869 "Resolve: sysID %s\n", sysID);
2874 ret = xmlCatalogListXMLResolve(catal->xml, pubID, sysID);
2880 sgml = xmlCatalogSGMLResolve(catal, pubID, sysID);
3299 * @sysID: the system ID string
3307 xmlCatalogResolveSystem(const xmlChar *sysID) {
3313 ret = xmlACatalogResolveSystem(xmlDefaultCatalog, sysID);
3340 * @sysID: the system ID string
3348 xmlCatalogResolve(const xmlChar *pubID, const xmlChar *sysID) {
3354 ret = xmlACatalogResolve(xmlDefaultCatalog, pubID, sysID);
3652 * @sysID: the system ID string
3662 const xmlChar *sysID) {
3669 if ((pubID == NULL) && (sysID == NULL))
3673 if ((pubID != NULL) && (sysID != NULL)) {
3675 "Local Resolve: pubID %s sysID %s\n", pubID, sysID);
3681 "Local Resolve: sysID %s\n", sysID);
3688 ret = xmlCatalogListXMLResolve(catal, pubID, sysID);
3736 * @sysID: the system ID string
3744 xmlCatalogGetSystem(const xmlChar *sysID) {
3758 if (sysID == NULL)
3765 ret = xmlCatalogListXMLResolve(xmlDefaultCatalog->xml, NULL, sysID);
3774 return(xmlCatalogGetSGMLSystem(xmlDefaultCatalog->sgml, sysID));