Home | History | Annotate | Download | only in lib

Lines Matching full:atts

655 #define atts (parser->m_atts)
796 atts = (ATTRIBUTE *)MALLOC(attsSize * sizeof(ATTRIBUTE));
797 if (atts == NULL) {
804 FREE(atts);
811 FREE(atts);
826 FREE(atts);
1215 FREE((void *)atts);
2494 (const XML_Char **)atts);
2519 startElementHandler(handlerArg, name.str, (const XML_Char **)atts);
2781 n = XmlGetAttributes(enc, attStr, attsSize, atts);
2789 temp = (ATTRIBUTE *)REALLOC((void *)atts, attsSize * sizeof(ATTRIBUTE));
2792 atts = temp;
2800 XmlGetAttributes(enc, attStr, n, atts);
2803 appAtts = (const XML_Char **)atts;
2805 ATTRIBUTE *currAtt = &atts[i];
2829 eventPtr = atts[i].name;
2834 if (!atts[i].normalized) {
2851 atts[i].valuePtr, atts[i].valueEnd,
2860 appAtts[attIndex] = poolStoreString(&tempPool, enc, atts[i].valuePtr,
2861 atts[i].valueEnd);