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

  /development/simulator/app/
MessageStream.cpp 134 int tagLen, msgLen;
135 tagLen = strlen(pBundle->tag) + 1;
146 tagLen +
160 memcpy(pCur, pBundle->tag, tagLen);
161 pCur += tagLen;
  /external/ppp/pppd/plugins/rp-pppoe/
common.c 50 UINT16_t tagType, tagLen;
73 tagLen = (((UINT16_t) curTag[2]) << 8) +
78 if ((curTag - packet->payload) + tagLen + TAG_HDR_SIZE > len) {
79 syslog(LOG_ERR, "Invalid PPPoE tag length (%u)", tagLen);
82 func(tagType, tagLen, curTag+TAG_HDR_SIZE, extra);
83 curTag = curTag + TAG_HDR_SIZE + tagLen;
105 UINT16_t tagType, tagLen;
128 tagLen = (((UINT16_t) curTag[2]) << 8) +
133 if ((curTag - packet->payload) + tagLen + TAG_HDR_SIZE > len) {
134 syslog(LOG_ERR, "Invalid PPPoE tag length (%u)", tagLen);
    [all...]
  /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)))
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
    [all...]
  /development/simulator/wrapsim/
SimMgr.c 938 int tagLen, messageLen, totalLen;
940 tagLen = strlen(tag) +1;
942 totalLen = sizeof(int) * 3 + tagLen + messageLen;
953 memcpy(cp, tag, tagLen);
954 cp += tagLen;
  /frameworks/base/media/libstagefright/
OggExtractor.cpp 679 size_t tagLen = strlen(kMap[j].mTag);
680 if (!strncasecmp(kMap[j].mTag, comment, tagLen)
681 && comment[tagLen] == '=') {
684 &comment[tagLen + 1],
685 mVc.comment_lengths[i] - tagLen - 1);
687 if (!strcasecmp(&comment[tagLen + 1], "true")) {
691 mFileMeta->setCString(kMap[j].mKey, &comment[tagLen + 1]);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringRefactoring.java     [all...]
  /system/core/liblog/
logprint.c 595 int tagLen;
597 tagLen = snprintf(messageBuf, messageBufLen, "[%d]", tagIndex);
599 messageBuf += tagLen+1;
600 messageBufLen -= tagLen+1;

Completed in 587 milliseconds