Lines Matching refs:tptr

122     const u_char *tptr;  in vtp_print()  local
129 tptr = pptr; in vtp_print()
131 ND_TCHECK_LEN(tptr, VTP_HEADER_LEN); in vtp_print()
133 type = GET_U_1(tptr + 1); in vtp_print()
135 GET_U_1(tptr), in vtp_print()
147 mgmtd_len = GET_U_1(tptr + 3); in vtp_print()
152 nd_printjnp(ndo, tptr + 4, mgmtd_len); in vtp_print()
155 GET_U_1(tptr + 2)); in vtp_print()
157 tptr += VTP_HEADER_LEN; in vtp_print()
184 GET_BE_U_4(tptr), in vtp_print()
185 GET_IPADDR_STRING(tptr+4)); in vtp_print()
186 tptr += 8; in vtp_print()
188 GET_BE_U_4(tptr), in vtp_print()
189 GET_BE_U_4(tptr + 4), in vtp_print()
190 GET_BE_U_4(tptr + 8)); in vtp_print()
191 tptr += VTP_UPDATE_TIMESTAMP_LEN; in vtp_print()
193 GET_BE_U_4(tptr), in vtp_print()
194 GET_BE_U_4(tptr + 4), in vtp_print()
195 GET_BE_U_4(tptr + 8), in vtp_print()
196 GET_BE_U_4(tptr + 12)); in vtp_print()
197 tptr += VTP_MD5_DIGEST_LEN; in vtp_print()
222 ND_PRINT(", Config Rev %x", GET_BE_U_4(tptr)); in vtp_print()
239 tptr += 4; in vtp_print()
240 while ((unsigned)(tptr - pptr) < length) { in vtp_print()
242 len = GET_U_1(tptr); in vtp_print()
246 ND_TCHECK_LEN(tptr, len); in vtp_print()
248 vtp_vlan = (const struct vtp_vlan_*)tptr; in vtp_print()
258 tptr += VTP_VLAN_INFO_FIXED_PART_LEN; in vtp_print()
262 nd_printjnp(ndo, tptr, name_len); in vtp_print()
268 tptr += 4*((name_len + 3)/4); in vtp_print()
283 type = GET_U_1(tptr); in vtp_print()
284 tlv_len = GET_U_1(tptr + 1); in vtp_print()
294 ND_TCHECK_LEN(tptr, tlv_len * 2 + 2); in vtp_print()
304 tlv_value = GET_BE_U_2(tptr + 2); in vtp_print()
346 print_unknown_data(ndo, tptr, "\n\t\t ", 2 + tlv_len*2); in vtp_print()
351 tptr += 2 + tlv_len*2; in vtp_print()
372 ND_PRINT("\n\tStart value: %u", GET_BE_U_4(tptr)); in vtp_print()