Searched refs:tlv_value (Results 1 – 3 of 3) sorted by relevance
/external/tcpdump/ |
D | print-vtp.c | 122 int type, len, tlv_len, tlv_value, mgmtd_len; in vtp_print() local 311 tlv_value = EXTRACT_16BITS(tptr+2); in vtp_print() 315 ND_PRINT((ndo, ", %u", tlv_value)); in vtp_print() 320 tlv_value == 1 ? "Enabled" : "Disabled", in vtp_print() 321 tlv_value)); in vtp_print() 326 tok2str(vtp_stp_type_values, "Unknown", tlv_value), in vtp_print() 327 tlv_value)); in vtp_print() 332 tlv_value == 1 ? "SRB" : "SRT", in vtp_print() 333 tlv_value)); in vtp_print() 338 tlv_value == 1 ? "Backup" : "Not backup", in vtp_print() [all …]
|
D | print-juniper.c | 1134 int tlv_value; in juniper_read_tlv_value() local 1140 tlv_value = *p; in juniper_read_tlv_value() 1143 tlv_value = EXTRACT_LE_16BITS(p); in juniper_read_tlv_value() 1146 tlv_value = EXTRACT_LE_24BITS(p); in juniper_read_tlv_value() 1149 tlv_value = EXTRACT_LE_32BITS(p); in juniper_read_tlv_value() 1152 tlv_value = -1; in juniper_read_tlv_value() 1159 tlv_value = *p; in juniper_read_tlv_value() 1162 tlv_value = EXTRACT_16BITS(p); in juniper_read_tlv_value() 1165 tlv_value = EXTRACT_24BITS(p); in juniper_read_tlv_value() 1168 tlv_value = EXTRACT_32BITS(p); in juniper_read_tlv_value() [all …]
|
/external/adhd/cros_alsa/src/ |
D | control_tlv.rs | 118 pub fn new(tlv_type: u32, tlv_value: Vec<u32>) -> Self { in new() 121 data[Self::LEN_OFFSET] = (tlv_value.len() * size_of::<u32>()) as u32; in new() 122 data.extend(tlv_value.iter()); in new()
|