Searched refs:packet (Results 1 – 6 of 6) sorted by relevance
/tools/test/connectivity/acts/tests/google/power/wifi/ |
D | PowerWiFimulticastTest.py | 58 def sendPacketAndMeasure(self, packet): argument 65 self.pkt_sender.start_sending(packet, self.interval) 74 packet = pkt_gen.generate() 75 self.sendPacketAndMeasure(packet) 82 packet = pkt_gen.generate(self.ipv4_dst_fake) 83 self.sendPacketAndMeasure(packet) 90 packet = pkt_gen.generate( 92 self.sendPacketAndMeasure(packet) 99 packet = pkt_gen.generate( 101 self.sendPacketAndMeasure(packet) [all …]
|
/tools/test/connectivity/acts/framework/acts/controllers/ |
D | packet_sender.py | 112 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/tests/google/net/ |
D | DhcpServerTest.py | 83 for packet in self.cleanup_releases: 84 self._send(packet) 150 def _handle_arp(self, packet): argument 152 if packet[ARP].op == ARP.who_has: 153 reply = ARP(op=ARP.is_at, hwsrc=self.real_hwaddr, psrc=packet.pdst, 889 def _get_response(self, packet): argument 890 resp = srp1(packet, iface=self.iface, timeout=10, verbose=False) 899 def _send(self, packet): argument 900 sendp(packet, iface=self.iface, verbose=False) 902 def _assert_type(self, packet, tp): argument [all …]
|
/tools/apkzlib/src/test/resources/testData/packaging/text-files/ |
D | rfc2460.txt | 87 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/trebuchet/core/common/src/main/kotlin/trebuchet/io/ |
D | Pipe.kt | 53 val packet = queue.take() in next() constant 54 if (packet.data == null) { in next() 57 return packet.data in next()
|
/tools/test/connectivity/acts/tests/google/net/arduino/connect_wifi/ |
D | connect_wifi.ino | 80 // read the packet into packetBufffer
|