Searched refs:pentities (Results 1 – 4 of 4) sorted by relevance
225 if (dtd->pentities == NULL) in xmlAddEntity()226 dtd->pentities = xmlHashCreateDict(0, dict); in xmlAddEntity()227 table = dtd->pentities; in xmlAddEntity()454 if ((doc->intSubset != NULL) && (doc->intSubset->pentities != NULL)) { in xmlGetParameterEntity()455 table = (xmlEntitiesTablePtr) doc->intSubset->pentities; in xmlGetParameterEntity()460 if ((doc->extSubset != NULL) && (doc->extSubset->pentities != NULL)) { in xmlGetParameterEntity()461 table = (xmlEntitiesTablePtr) doc->extSubset->pentities; in xmlGetParameterEntity()
184 if ((dtd != NULL) && (dtd->pentities != NULL)) { in xmlGetParameterEntityFromDtd()185 table = (xmlEntitiesTablePtr) dtd->pentities; in xmlGetParameterEntityFromDtd()1129 if (cur->pentities != NULL) in xmlFreeDtd()1130 xmlFreeEntitiesTable((xmlEntitiesTablePtr) cur->pentities); in xmlFreeDtd()3765 if (xmlHashLookup(doc->intSubset->pentities, cur->name) == cur) in xmlUnlinkNode()3766 xmlHashRemoveEntry(doc->intSubset->pentities, cur->name, in xmlUnlinkNode()3773 if (xmlHashLookup(doc->extSubset->pentities, cur->name) == cur) in xmlUnlinkNode()3774 xmlHashRemoveEntry(doc->extSubset->pentities, cur->name, in xmlUnlinkNode()4378 if (dtd->pentities != NULL) in xmlCopyDtd()4379 ret->pentities = (void *) xmlCopyEntitiesTable( in xmlCopyDtd()[all …]
635 (dtd->pentities == NULL)) { in xmlDtdDumpOutput()
385 void *pentities; /* Hash table for param entities if any */ member