/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/ |
D | edns.py | 36 def from_wire(cls, otype, wire, current, olen): member in Option 50 from_wire = classmethod(from_wire) variable in Option 111 def from_wire(cls, otype, wire, current, olen): member in GenericOption 114 from_wire = classmethod(from_wire) variable in GenericOption 142 return cls.from_wire(otype, wire, current, olen)
|
D | rdata.py | 275 def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None): member in Rdata 295 from_wire = classmethod(from_wire) variable in Rdata 343 def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None): member in GenericRdata 346 from_wire = classmethod(from_wire) variable in GenericRdata 426 return from_wire(rdclass, rdtype, rdata.data, 0, len(rdata.data), 430 def from_wire(rdclass, rdtype, wire, current, rdlen, origin = None): function 456 return cls.from_wire(rdclass, rdtype, wire, current, rdlen, origin)
|
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/rdtypes/ANY/ |
D | RP.py | 60 def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None): member in RP 61 (mbox, cused) = dns.name.from_wire(wire[: current + rdlen], 67 (txt, cused) = dns.name.from_wire(wire[: current + rdlen], 76 from_wire = classmethod(from_wire) variable in RP
|
D | SOA.py | 92 def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None): member in SOA 93 (mname, cused) = dns.name.from_wire(wire[: current + rdlen], current) 96 (rname, cused) = dns.name.from_wire(wire[: current + rdlen], current) 110 from_wire = classmethod(from_wire) variable in SOA
|
D | NXT.py | 81 def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None): member in NXT 82 (next, cused) = dns.name.from_wire(wire[: current + rdlen], current) 90 from_wire = classmethod(from_wire) variable in NXT
|
D | X25.py | 50 def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None): member in X25 59 from_wire = classmethod(from_wire) variable in X25
|
D | SSHFP.py | 62 def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None): member in SSHFP 69 from_wire = classmethod(from_wire) variable in SSHFP
|
D | HINFO.py | 60 def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None): member in HINFO 77 from_wire = classmethod(from_wire) variable in HINFO
|
D | NSEC3PARAM.py | 69 def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None): member in NSEC3PARAM 81 from_wire = classmethod(from_wire) variable in NSEC3PARAM
|
D | NSEC.py | 98 def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None): member in NSEC 99 (next, cused) = dns.name.from_wire(wire[: current + rdlen], current) 122 from_wire = classmethod(from_wire) variable in NSEC
|
D | ISDN.py | 70 def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None): member in ISDN 90 from_wire = classmethod(from_wire) variable in ISDN
|
D | HIP.py | 84 def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None): member in HIP 97 (server, cused) = dns.name.from_wire(wire[: current + rdlen], 106 from_wire = classmethod(from_wire) variable in HIP
|
D | CERT.py | 108 def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None): member in CERT 119 from_wire = classmethod(from_wire) variable in CERT
|
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/rdtypes/IN/ |
D | PX.py | 63 def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None): member in PX 67 (map822, cused) = dns.name.from_wire(wire[: current + rdlen], 75 (mapx400, cused) = dns.name.from_wire(wire[: current + rdlen], 83 from_wire = classmethod(from_wire) variable in PX
|
D | SRV.py | 65 def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None): member in SRV 70 (target, cused) = dns.name.from_wire(wire[: current + rdlen], 78 from_wire = classmethod(from_wire) variable in SRV
|
D | DHCID.py | 53 def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None): member in DHCID 57 from_wire = classmethod(from_wire) variable in DHCID
|
D | NSAP.py | 52 def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None): member in NSAP 56 from_wire = classmethod(from_wire) variable in NSAP
|
D | A.py | 48 def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None): member in A 52 from_wire = classmethod(from_wire) variable in A
|
D | AAAA.py | 48 def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None): member in AAAA 53 from_wire = classmethod(from_wire) variable in AAAA
|
D | NAPTR.py | 90 def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None): member in NAPTR 105 (replacement, cused) = dns.name.from_wire(wire[: current + rdlen], 114 from_wire = classmethod(from_wire) variable in NAPTR
|
D | IPSECKEY.py | 117 def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None): member in IPSECKEY 137 (gateway, cused) = dns.name.from_wire(wire[: current + rdlen], 147 from_wire = classmethod(from_wire) variable in IPSECKEY
|
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/rdtypes/ |
D | nsbase.py | 54 def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None): member in NSBase 55 (target, cused) = dns.name.from_wire(wire[: current + rdlen], 63 from_wire = classmethod(from_wire) variable in NSBase
|
D | mxbase.py | 62 def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None): member in MXBase 66 (exchange, cused) = dns.name.from_wire(wire[: current + rdlen], 74 from_wire = classmethod(from_wire) variable in MXBase
|
D | txtbase.py | 70 def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None): member in TXTBase 84 from_wire = classmethod(from_wire) variable in TXTBase
|
D | dsbase.py | 75 def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None): member in DSBase 82 from_wire = classmethod(from_wire) variable in DSBase
|