Lines Matching defs:openEntity
1213 OPEN_INTERNAL_ENTITY *openEntity = openEntityList;
1214 openEntityList = openEntity->next;
1215 openEntity->next = parser->m_freeInternalEntities;
1216 parser->m_freeInternalEntities = openEntity;
1463 OPEN_INTERNAL_ENTITY *openEntity;
1470 openEntity = entityList;
1472 FREE(parser, openEntity);
5719 OPEN_INTERNAL_ENTITY *openEntity;
5722 openEntity = parser->m_freeInternalEntities;
5723 parser->m_freeInternalEntities = openEntity->next;
5725 openEntity
5727 if (! openEntity)
5735 openEntity->next = parser->m_openInternalEntities;
5736 parser->m_openInternalEntities = openEntity;
5737 openEntity->entity = entity;
5738 openEntity->startTagLevel = parser->m_tagLevel;
5739 openEntity->betweenDecl = betweenDecl;
5740 openEntity->internalEventPtr = NULL;
5741 openEntity->internalEventEndPtr = NULL;
5769 parser->m_openInternalEntities = openEntity->next;
5770 /* put openEntity back in list of free instances */
5771 openEntity->next = parser->m_freeInternalEntities;
5772 parser->m_freeInternalEntities = openEntity;
5785 OPEN_INTERNAL_ENTITY *openEntity = parser->m_openInternalEntities;
5786 if (! openEntity)
5789 entity = openEntity->entity;
5804 result = doContent(parser, openEntity->startTagLevel,
5820 parser->m_openInternalEntities = openEntity->next;
5821 /* put openEntity back in list of free instances */
5822 openEntity->next = parser->m_freeInternalEntities;
5823 parser->m_freeInternalEntities = openEntity;