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

  /external/ppp/pppd/plugins/rp-pppoe/
common.c 48 unsigned char *curTag;
67 curTag = packet->payload;
68 while(curTag - packet->payload < len) {
70 tagType = (curTag[0] << 8) + curTag[1];
71 tagLen = (curTag[2] << 8) + curTag[3];
75 if ((curTag - packet->payload) + tagLen + TAG_HDR_SIZE > len) {
79 func(tagType, tagLen, curTag+TAG_HDR_SIZE, extra);
80 curTag = curTag + TAG_HDR_SIZE + tagLen
    [all...]
pppoe-discovery.c 265 unsigned char *curTag;
286 curTag = packet->payload;
287 while(curTag - packet->payload < len) {
289 tagType = (curTag[0] << 8) + curTag[1];
290 tagLen = (curTag[2] << 8) + curTag[3];
294 if ((curTag - packet->payload) + tagLen + TAG_HDR_SIZE > len) {
298 func(tagType, tagLen, curTag+TAG_HDR_SIZE, extra);
299 curTag = curTag + TAG_HDR_SIZE + tagLen
    [all...]
  /frameworks/base/tools/aapt/
ResourceTable.cpp 695 const String16& curTag,
710 curTag, &str, curIsStyled ? &spans : NULL,
    [all...]

Completed in 208 milliseconds