HomeSort by relevance Sort by last modified time
    Searched defs:tagType (Results 1 - 3 of 3) sorted by null

  /external/ppp/pppd/plugins/rp-pppoe/
common.c 50 UINT16_t tagType, tagLen;
71 tagType = (((UINT16_t) curTag[0]) << 8) +
75 if (tagType == TAG_END_OF_LIST) {
82 func(tagType, tagLen, curTag+TAG_HDR_SIZE, extra);
105 UINT16_t tagType, tagLen;
126 tagType = (((UINT16_t) curTag[0]) << 8) +
130 if (tagType == TAG_END_OF_LIST) {
137 if (tagType == type) {
  /frameworks/base/media/libdrm/mobile1/src/xml/
xml_tinyparser.c 74 int32_t tagLen, tagType, bal;
81 if (NULL == (buffer = XML_DOM_getTag(buffer, &tagLen, &tagType)))
84 switch (tagType) {
264 uint8_t *XML_DOM_getTag(uint8_t *buffer, int32_t *tagLen, int32_t *tagType)
300 *tagType = XML_TAG_END;
310 *tagType = XML_TAG_START;
312 *tagType = XML_TAG_SELF;
326 if (*tagType == XML_TAG_END)
342 int32_t tagLen, tagType;
358 if (NULL == (buffer = XML_DOM_getTag(buffer, &tagLen, &tagType))) {
    [all...]
  /frameworks/base/core/java/android/app/
SearchableInfo.java 560 int tagType = xml.next();
561 while (tagType != XmlPullParser.END_DOCUMENT) {
562 if (tagType == XmlPullParser.START_TAG) {
591 tagType = xml.next();
    [all...]

Completed in 209 milliseconds