Lines Matching refs:openEntity

1356     OPEN_INTERNAL_ENTITY *openEntity = openEntityList;  in XML_ParserReset()  local
1357 openEntityList = openEntity->next; in XML_ParserReset()
1358 openEntity->next = parser->m_freeInternalEntities; in XML_ParserReset()
1359 parser->m_freeInternalEntities = openEntity; in XML_ParserReset()
1365 OPEN_INTERNAL_ENTITY *openEntity = openEntityList; in XML_ParserReset() local
1366 openEntityList = openEntity->next; in XML_ParserReset()
1367 openEntity->next = parser->m_freeAttributeEntities; in XML_ParserReset()
1368 parser->m_freeAttributeEntities = openEntity; in XML_ParserReset()
1374 OPEN_INTERNAL_ENTITY *openEntity = openEntityList; in XML_ParserReset() local
1375 openEntityList = openEntity->next; in XML_ParserReset()
1376 openEntity->next = parser->m_freeValueEntities; in XML_ParserReset()
1377 parser->m_freeValueEntities = openEntity; in XML_ParserReset()
1639 OPEN_INTERNAL_ENTITY *openEntity; in XML_ParserFree() local
1646 openEntity = entityList; in XML_ParserFree()
1648 FREE(parser, openEntity); in XML_ParserFree()
1653 OPEN_INTERNAL_ENTITY *openEntity; in XML_ParserFree() local
1660 openEntity = entityList; in XML_ParserFree()
1662 FREE(parser, openEntity); in XML_ParserFree()
1667 OPEN_INTERNAL_ENTITY *openEntity; in XML_ParserFree() local
1674 openEntity = entityList; in XML_ParserFree()
1676 FREE(parser, openEntity); in XML_ParserFree()
5980 OPEN_INTERNAL_ENTITY *openEntity, **openEntityList, **freeEntityList; in processEntity() local
6008 openEntity = *freeEntityList; in processEntity()
6009 *freeEntityList = openEntity->next; in processEntity()
6011 openEntity in processEntity()
6013 if (! openEntity) in processEntity()
6022 openEntity->next = *openEntityList; in processEntity()
6023 *openEntityList = openEntity; in processEntity()
6024 openEntity->entity = entity; in processEntity()
6025 openEntity->type = type; in processEntity()
6026 openEntity->startTagLevel = parser->m_tagLevel; in processEntity()
6027 openEntity->betweenDecl = betweenDecl; in processEntity()
6028 openEntity->internalEventPtr = NULL; in processEntity()
6029 openEntity->internalEventEndPtr = NULL; in processEntity()
6049 OPEN_INTERNAL_ENTITY *openEntity = parser->m_openInternalEntities; in internalEntityProcessor() local
6050 if (! openEntity) in internalEntityProcessor()
6053 entity = openEntity->entity; in internalEntityProcessor()
6069 result = doContent(parser, openEntity->startTagLevel, in internalEntityProcessor()
6102 assert(parser->m_openInternalEntities == openEntity); in internalEntityProcessor()
6107 openEntity->next = parser->m_freeInternalEntities; in internalEntityProcessor()
6108 parser->m_freeInternalEntities = openEntity; in internalEntityProcessor()
6138 OPEN_INTERNAL_ENTITY *const openEntity = parser->m_openAttributeEntities; in storeAttributeValue() local
6139 if (! openEntity) in storeAttributeValue()
6142 ENTITY *const entity = openEntity->entity; in storeAttributeValue()
6179 assert(parser->m_openAttributeEntities == openEntity); in storeAttributeValue()
6184 openEntity->next = parser->m_freeAttributeEntities; in storeAttributeValue()
6185 parser->m_freeAttributeEntities = openEntity; in storeAttributeValue()
6589 OPEN_INTERNAL_ENTITY *const openEntity = parser->m_openValueEntities; in callStoreEntityValue() local
6590 if (! openEntity) in callStoreEntityValue()
6593 ENTITY *const entity = openEntity->entity; in callStoreEntityValue()
6630 assert(parser->m_openValueEntities == openEntity); in callStoreEntityValue()
6635 openEntity->next = parser->m_freeValueEntities; in callStoreEntityValue()
6636 parser->m_freeValueEntities = openEntity; in callStoreEntityValue()