Home
last modified time | relevance | path

Searched refs:id_length (Results 1 – 3 of 3) sorted by relevance

/external/wpa_supplicant_8/src/wps/
Dndef.c27 u8 id_length; member
56 record->id_length = *pos++; in ndef_parse_record()
58 record->id_length = 0; in ndef_parse_record()
63 record->id = record->id_length == 0 ? NULL : pos; in ndef_parse_record()
64 pos += record->id_length; in ndef_parse_record()
101 u8 id_length, in ndef_build_record() argument
115 if (id_length > 0) in ndef_build_record()
117 total_len += type_length + id_length + payload_length; in ndef_build_record()
126 if (id_length > 0) in ndef_build_record()
139 if (id_length > 0) in ndef_build_record()
[all …]
/external/tcpdump/
Dprint-isoclns.c550 u_int8_t id_length; member
1744 u_int8_t pdu_type, max_area, id_length, tlv_type, tlv_len, tmp, alen, lan_alen, prefix_len; in isis_print() local
1774 if ((isis_header->id_length != SYSTEM_ID_LEN) && (isis_header->id_length != 0)) { in isis_print()
1776 isis_header->id_length); in isis_print()
1797 id_length = isis_header->id_length; in isis_print()
1798 switch(id_length) { in isis_print()
1800 id_length = 6; /* silly shit again */ in isis_print()
1812 id_length = 0; /* entirely useless */ in isis_print()
1819 if (id_length != 6 ) { in isis_print()
1820 printf("bad packet -- illegal sys-ID length (%u)", id_length); in isis_print()
[all …]
/external/chromium_org/chrome/browser/chromeos/drive/
Dresource_metadata_storage.cc100 const int id_length = key.size() - 1 - kSuffixLength; in GetIdFromCacheEntryKey() local
101 return std::string(key.data(), id_length); in GetIdFromCacheEntryKey()