Home | History | Annotate | Download | only in xml

Lines Matching defs:tagLen

74     int32_t tagLen, tagType, bal;
81 if (NULL == (buffer = XML_DOM_getTag(buffer, &tagLen, &tagType)))
87 if (NULL == (buffer = xml_goto_tagend(buffer + tagLen + 1)))
99 buffer = buffer + tagLen + 2;
264 uint8_t *XML_DOM_getTag(uint8_t *buffer, int32_t *tagLen, int32_t *tagType)
327 *tagLen = buffer - pStart - 2;
329 *tagLen = buffer - pStart - 1;
342 int32_t tagLen, tagType;
358 if (NULL == (buffer = XML_DOM_getTag(buffer, &tagLen, &tagType))) {
373 if ((int32_t) strlen((char *)nodeStr) != tagLen
374 || strncmp((char *)nodeStr, (char *)(buffer + 1), tagLen) != 0) {
381 buffer += (tagLen + 1);
712 XML_TREE *xml_tree_fillnode(uint8_t **buf, int32_t tagLen)
723 strncpy((char *)Tree->tag, (char *)++buffer, tagLen);
724 buffer += tagLen;