Lines Matching defs:openEntity
1308 OPEN_INTERNAL_ENTITY *openEntity = openEntityList;
1309 openEntityList = openEntity->next;
1310 openEntity->next = parser->m_freeInternalEntities;
1311 parser->m_freeInternalEntities = openEntity;
1561 OPEN_INTERNAL_ENTITY *openEntity;
1568 openEntity = entityList;
1570 FREE(parser, openEntity);
5838 OPEN_INTERNAL_ENTITY *openEntity;
5841 openEntity = parser->m_freeInternalEntities;
5842 parser->m_freeInternalEntities = openEntity->next;
5844 openEntity
5846 if (! openEntity)
5854 openEntity->next = parser->m_openInternalEntities;
5855 parser->m_openInternalEntities = openEntity;
5856 openEntity->entity = entity;
5857 openEntity->startTagLevel = parser->m_tagLevel;
5858 openEntity->betweenDecl = betweenDecl;
5859 openEntity->internalEventPtr = NULL;
5860 openEntity->internalEventEndPtr = NULL;
5887 parser->m_openInternalEntities = openEntity->next;
5888 /* put openEntity back in list of free instances */
5889 openEntity->next = parser->m_freeInternalEntities;
5890 parser->m_freeInternalEntities = openEntity;
5903 OPEN_INTERNAL_ENTITY *openEntity = parser->m_openInternalEntities;
5904 if (! openEntity)
5907 entity = openEntity->entity;
5920 result = doContent(parser, openEntity->startTagLevel,
5937 parser->m_openInternalEntities = openEntity->next;
5938 /* put openEntity back in list of free instances */
5939 openEntity->next = parser->m_freeInternalEntities;
5940 parser->m_freeInternalEntities = openEntity;