Lines Matching refs:bufLength
301 bool simpleXmlParseAttributes(const char* buf, unsigned bufLength, simpleXMLAttributeCb func, const… in simpleXmlParseAttributes() argument
303 const char *itr = buf, *itrEnd = buf + bufLength; in simpleXmlParseAttributes()
304 char* tmpBuf = (char*)malloc(bufLength + 1); in simpleXmlParseAttributes()
378 bool simpleXmlParse(const char* buf, unsigned bufLength, bool strip, simpleXMLCb func, const void* … in simpleXmlParse() argument
380 const char *itr = buf, *itrEnd = buf + bufLength; in simpleXmlParse()
471 bool simpleXmlParseW3CAttribute(const char* buf, unsigned bufLength, simpleXMLAttributeCb func, con… in simpleXmlParseW3CAttribute() argument
480 end = buf + bufLength; in simpleXmlParseW3CAttribute()
540 const char* simpleXmlParseCSSAttribute(const char* buf, unsigned bufLength, char** tag, char** name… in simpleXmlParseCSSAttribute() argument
547 auto itr = _simpleXmlSkipWhiteSpace(buf, buf + bufLength); in simpleXmlParseCSSAttribute()
548 auto itrEnd = (const char*)memchr(buf, '{', bufLength); in simpleXmlParseCSSAttribute()
552 auto nextElement = (const char*)memchr(itrEnd, '}', bufLength - (itrEnd - buf)); in simpleXmlParseCSSAttribute()
577 const char* simpleXmlFindAttributesTag(const char* buf, unsigned bufLength) in simpleXmlFindAttributesTag() argument
579 const char *itr = buf, *itrEnd = buf + bufLength; in simpleXmlFindAttributesTag()