Home
last modified time | relevance | path

Searched refs:pentities (Results 1 – 4 of 4) sorted by relevance

/external/libxml2/
Dentities.c225 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()
Dtree.c183 if ((dtd != NULL) && (dtd->pentities != NULL)) { in xmlGetParameterEntityFromDtd()
184 table = (xmlEntitiesTablePtr) dtd->pentities; in xmlGetParameterEntityFromDtd()
1117 if (cur->pentities != NULL) in xmlFreeDtd()
1118 xmlFreeEntitiesTable((xmlEntitiesTablePtr) cur->pentities); in xmlFreeDtd()
3744 if (xmlHashLookup(doc->intSubset->pentities, cur->name) == cur) in xmlUnlinkNode()
3745 xmlHashRemoveEntry(doc->intSubset->pentities, cur->name, in xmlUnlinkNode()
3752 if (xmlHashLookup(doc->extSubset->pentities, cur->name) == cur) in xmlUnlinkNode()
3753 xmlHashRemoveEntry(doc->extSubset->pentities, cur->name, in xmlUnlinkNode()
4353 if (dtd->pentities != NULL) in xmlCopyDtd()
4354 ret->pentities = (void *) xmlCopyEntitiesTable( in xmlCopyDtd()
[all …]
Dxmlsave.c575 (dtd->pentities == NULL)) { in xmlDtdDumpOutput()
/external/libxml2/include/libxml/
Dtree.h385 void *pentities; /* Hash table for param entities if any */ member