• Home
  • Raw
  • Download

Lines Matching refs:sgml

165     xmlHashTablePtr sgml;  member
429 ret->sgml = xmlHashCreate(10); in xmlCreateNewCatalog()
445 if (catal->sgml != NULL) in xmlFreeCatalog()
446 xmlHashFree(catal->sgml, xmlFreeCatalogEntry); in xmlFreeCatalog()
735 if ((entry == NULL) || (catal == NULL) || (catal->sgml == NULL) || in xmlCatalogConvertEntry()
767 xmlHashRemoveEntry(catal->sgml, entry->name, xmlFreeCatalogEntry); in xmlCatalogConvertEntry()
774 xmlHashRemoveEntry(catal->sgml, entry->name, NULL); in xmlCatalogConvertEntry()
807 xmlHashScan(catal->sgml, xmlCatalogConvertEntry, &catal); in xmlConvertSGMLCatalog()
2492 res = xmlHashAddEntry(catal->sgml, name, entry); in xmlParseSGMLCatalog()
2505 res = xmlHashAddEntry(catal->sgml, sysid, entry); in xmlParseSGMLCatalog()
2617 if (catal->sgml == NULL) in xmlCatalogSGMLResolve()
2621 ret = xmlCatalogGetSGMLPublic(catal->sgml, pubID); in xmlCatalogSGMLResolve()
2625 ret = xmlCatalogGetSGMLSystem(catal->sgml, sysID); in xmlCatalogSGMLResolve()
2803 const xmlChar *sgml; in xmlACatalogResolveSystem() local
2805 sgml = xmlCatalogGetSGMLSystem(catal->sgml, sysID); in xmlACatalogResolveSystem()
2806 if (sgml != NULL) in xmlACatalogResolveSystem()
2807 ret = xmlStrdup(sgml); in xmlACatalogResolveSystem()
2838 const xmlChar *sgml; in xmlACatalogResolvePublic() local
2840 sgml = xmlCatalogGetSGMLPublic(catal->sgml, pubID); in xmlACatalogResolvePublic()
2841 if (sgml != NULL) in xmlACatalogResolvePublic()
2842 ret = xmlStrdup(sgml); in xmlACatalogResolvePublic()
2885 const xmlChar *sgml; in xmlACatalogResolve() local
2887 sgml = xmlCatalogSGMLResolve(catal, pubID, sysID); in xmlACatalogResolve()
2888 if (sgml != NULL) in xmlACatalogResolve()
2889 ret = xmlStrdup(sgml); in xmlACatalogResolve()
2920 const xmlChar *sgml; in xmlACatalogResolveURI() local
2922 sgml = xmlCatalogSGMLResolve(catal, NULL, URI); in xmlACatalogResolveURI()
2923 if (sgml != NULL) in xmlACatalogResolveURI()
2924 ret = xmlStrdup(sgml); in xmlACatalogResolveURI()
2945 xmlHashScan(catal->sgml, xmlCatalogDumpEntry, out); in xmlACatalogDump()
2982 if (catal->sgml == NULL) in xmlACatalogAdd()
2983 catal->sgml = xmlHashCreate(10); in xmlACatalogAdd()
2984 res = xmlHashAddEntry(catal->sgml, orig, entry); in xmlACatalogAdd()
3009 res = xmlHashRemoveEntry(catal->sgml, value, xmlFreeCatalogEntry); in xmlACatalogRemove()
3025 xmlNewCatalog(int sgml) { in xmlNewCatalog() argument
3028 if (sgml) { in xmlNewCatalog()
3031 if ((catal != NULL) && (catal->sgml == NULL)) in xmlNewCatalog()
3032 catal->sgml = xmlHashCreate(10); in xmlNewCatalog()
3064 if (catal->sgml == NULL) in xmlCatalogIsEmpty()
3066 res = xmlHashSize(catal->sgml); in xmlCatalogIsEmpty()
3778 return(xmlCatalogGetSGMLSystem(xmlDefaultCatalog->sgml, sysID)); in xmlCatalogGetSystem()
3822 return(xmlCatalogGetSGMLPublic(xmlDefaultCatalog->sgml, pubID)); in xmlCatalogGetPublic()