OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:curTag
(Results
1 - 2
of
2
) sorted by null
/external/ppp/pppd/plugins/rp-pppoe/
common.c
49
unsigned char *
curTag
;
68
curTag
= packet->payload;
69
while(
curTag
- packet->payload < len) {
71
tagType = (((UINT16_t)
curTag
[0]) << 8) +
72
(UINT16_t)
curTag
[1];
73
tagLen = (((UINT16_t)
curTag
[2]) << 8) +
74
(UINT16_t)
curTag
[3];
78
if ((
curTag
- packet->payload) + tagLen + TAG_HDR_SIZE > len) {
82
func(tagType, tagLen,
curTag
+TAG_HDR_SIZE, extra);
83
curTag
= curTag + TAG_HDR_SIZE + tagLen
[
all
...]
/frameworks/base/tools/aapt/
ResourceTable.cpp
645
const String16&
curTag
,
659
curTag
, &str, curIsStyled ? &spans : NULL,
825
const String16*
curTag
= NULL;
[
all
...]
Completed in 24 milliseconds