Home
last modified time | relevance | path

Searched refs:BitFieldLenField (Results 1 – 8 of 8) sorted by relevance

/external/scapy/scapy/contrib/
Dmodbus.py52 BitFieldLenField("byteCount", None, 8, count_of="coilStatus"),
85 BitFieldLenField("byteCount", None, 8, count_of="inputStatus"),
108BitFieldLenField("byteCount", None, 8, count_of="registerVal", adjust=lambda pkt, x: x*2),
132BitFieldLenField("byteCount", None, 8, count_of="registerVal", adjust=lambda pkt, x: x*2),
211 BitFieldLenField("byteCount", None, 8, count_of="outputsValue"),
235 BitFieldLenField("quantityRegisters", None, 16, count_of="outputsValue",),
236BitFieldLenField("byteCount", None, 8, count_of="outputsValue", adjust=lambda pkt, x: x*2),
265 BitFieldLenField("byteCount", None, 8, length_of="slaveId"),
308 …fields_desc = [BitFieldLenField("respLength", None, 8, count_of="recData", adjust=lambda pkt, p: p…
347BitFieldLenField("recordLength", None, 16, length_of="recordData", adjust=lambda pkt, p: p//2),
[all …]
Dlldp.py48 BitFieldLenField, ShortField, Padding, Scapy_Exception, \
310 BitFieldLenField('_length', None, 9, length_of='id',
359 BitFieldLenField('_length', None, 9, length_of='id',
443 BitFieldLenField('_length', None, 9, length_of='description'),
454 BitFieldLenField('_length', None, 9, length_of='system_name'),
465 BitFieldLenField('_length', None, 9, length_of='description'),
476 BitFieldLenField('_length', 4, 9),
628 BitFieldLenField('_length', None, 9, length_of='management_address',
631 BitFieldLenField('_management_address_string_length', None, 8,
643 BitFieldLenField('_oid_string_length', None, 8, length_of='object_id'),
Dnsh.py21 from scapy.fields import ConditionalField, PacketListField, BitFieldLenField
64 BitFieldLenField('Len', None, 6,
Dcoap.py229 BitFieldLenField("tkl", None, 4, length_of='token'),
Disis.py479 BitFieldLenField("pfxlen", None, 6, length_of="pfx"),
/external/scapy/scapy/layers/
Drtp.py41 BitFieldLenField('numsync', None, 4, count_of='sync'),
/external/scapy/test/
Dfields.uts142 = BitFieldLenField test
145 fields_desc = [ BitFieldLenField("len", None, 4, length_of="str" , adjust=lambda pkt,x:x+1),
/external/scapy/scapy/
Dfields.py894 class BitFieldLenField(BitField): class