Home
last modified time | relevance | path

Searched refs:packet (Results 1 – 7 of 7) sorted by relevance

/tools/test/connectivity/acts_tests/tests/google/power/wifi/
DPowerWiFimulticastTest.py75 def sendPacketAndMeasure(self, packet): argument
82 self.pkt_sender.start_sending(packet, self.interval)
91 packet = pkt_gen.generate()
92 self.sendPacketAndMeasure(packet)
99 packet = pkt_gen.generate(ip_dst=self.ipv4_dst_fake)
100 self.sendPacketAndMeasure(packet)
107 packet = pkt_gen.generate(ip_dst='0.0.0.0',
109 self.sendPacketAndMeasure(packet)
116 packet = pkt_gen.generate(ip_dst=self.ipv4_dst_fake,
118 self.sendPacketAndMeasure(packet)
[all …]
/tools/test/connectivity/acts/framework/acts/controllers/
Dpacket_sender.py112 def __init__(self, signal, packet, interval, interface, log): argument
115 self.packet = packet
129 scapy.sendp(self.packet, iface=self.interface, verbose=0)
160 self.packet = None
166 def send_ntimes(self, packet, ntimes, interval): argument
174 if packet is None:
180 scapy.sendp(packet, iface=self.interface, verbose=0)
186 def send_receive_ntimes(self, packet, ntimes, interval): argument
195 if packet is None:
202 packet, iface=self.interface, timeout=interval, verbose=0)
[all …]
/tools/test/connectivity/acts/framework/acts/controllers/monsoon_lib/sampling/lvpm_stock/
Dstock_transformers.py38 from acts.controllers.monsoon_lib.sampling.lvpm_stock.packet import Packet
39 from acts.controllers.monsoon_lib.sampling.lvpm_stock.packet import SampleType
169 for i, packet in enumerate(buffer):
173 'dd', packet[:time_bytes_size])
174 packet = packet[time_bytes_size:]
178 if len(packet) < 4 + 8 + 1 or packet[0] & 0x20 != 0x20:
181 'type=0x%02x, len=%d instead.', packet[0], len(packet))
185 buffer[i] = Packet(packet, time_of_read, time_since_last_read)
222 for packet in buffer:
225 if packet is None:
[all …]
/tools/apkzlib/src/test/resources/testData/packaging/text-files/
Drfc2460.txt87 a packet to any one of a group of nodes.
92 reduce the common-case processing cost of packet handling and
125 defined IPv6 extension headers and options. It also discusses packet
162 packet - an IPv6 header plus payload.
164 link MTU - the maximum transmission unit, i.e., maximum packet
219 payload, i.e., the rest of the packet following
241 each node that forwards the packet. The packet
245 Source Address 128-bit address of the originator of the packet.
249 packet (possibly not the ultimate recipient, if
291 layer header in a packet. There are a small number of such extension
[all …]
/tools/test/connectivity/acts/framework/acts/controllers/monsoon_lib/sampling/hvpm/
Dtransformers.py41 from acts.controllers.monsoon_lib.sampling.hvpm.packet import HvpmMeasurement
42 from acts.controllers.monsoon_lib.sampling.hvpm.packet import Packet
43 from acts.controllers.monsoon_lib.sampling.hvpm.packet import SampleType
214 def _process_dropped_count(self, packet): argument
216 if packet.dropped_count == self.previous_dropped_count:
219 if packet.dropped_count < self.previous_dropped_count:
222 self.previous_dropped_count = packet.dropped_count
225 (packet.time_of_read, self.total_dropped_count))
283 for packet in buffer:
284 for sample in packet:
[all …]
Dcalibrations.py25 from acts.controllers.monsoon_lib.sampling.hvpm.packet import SampleType
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/io/
DPipe.kt53 val packet = queue.take() in next() constant
54 if (packet.data == null) { in next()
57 return packet.data in next()