Home
last modified time | relevance | path

Searched refs:Packet (Results 1 – 17 of 17) sorted by relevance

/tools/netsim/rust/proto/src/
Dpacket_streamer.rs151 ::std::option::Option::Some(packet_request::Request_type::Packet(ref v)) => v, in packet()
162 ::std::option::Option::Some(packet_request::Request_type::Packet(..)) => true, in has_packet()
169 self.request_type = ::std::option::Option::Some(packet_request::Request_type::Packet(v)) in set_packet()
174 … if let ::std::option::Option::Some(packet_request::Request_type::Packet(_)) = self.request_type { in mut_packet()
176 …self.request_type = ::std::option::Option::Some(packet_request::Request_type::Packet(::std::vec::V… in mut_packet()
179 ::std::option::Option::Some(packet_request::Request_type::Packet(ref mut v)) => v, in mut_packet()
188 ::std::option::Option::Some(packet_request::Request_type::Packet(v)) => v, in take_packet()
245 …request_type = ::std::option::Option::Some(packet_request::Request_type::Packet(is.read_bytes()?)); in merge_from()
269 &packet_request::Request_type::Packet(ref v) => { in compute_size()
288 &packet_request::Request_type::Packet(ref v) => { in write_to_with_cached_sizes()
[all …]
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/io/
DPipe.kt31 private class Packet<out T>(val data: T?) class
33 private val queue = ArrayBlockingQueue<Packet<T>>(capacity)
41 queue.put(Packet(data)) in add()
47 queue.put(Packet(null)) in close()
/tools/netsim/guide/src/ui/
DREADME.md54 ## Changing to Packet Trace View
56 <br><img src="assets/packet_trace_view.gif" alt="Packet Trace View GIF" width="500" /><br>
57 1. On the navigation bar on top, click **Packet Trace**.
59 ## Toggling Packet Capture and Downloading pcap
61 <br><img src="assets/packet_capture.gif" alt="Packet Capture GIF" width="500" /><br>
62 1. On the navigation bar on top, click **Packet Trace**.
/tools/netsim/rust/daemon/src/transport/
Duci.rs30 pub struct Packet { struct
39 pub fn read_uci_packet<R: Read>(reader: &mut R) -> Result<Packet, PacketError> { in read_uci_packet() argument
47 Ok(Packet { payload: Bytes::from(buffer) }) in read_uci_packet()
Dh4.rs21 pub struct Packet { struct
50 pub fn read_h4_packet<R: Read>(reader: &mut R) -> Result<Packet, PacketError> { in read_h4_packet() argument
103 Ok(Packet { h4_type, payload: Bytes::from(packet) }) in read_h4_packet()
116 fn h4_recovery<R: Read>(mut reader: R) -> Result<Packet, PacketError> { in h4_recovery() argument
135 return Ok(Packet { in h4_recovery()
Dfd.rs128 Ok(uci::Packet { payload }) => { in fd_reader()
133 Ok(h4::Packet { h4_type, payload }) => { in fd_reader()
301 Ok(uci::Packet { payload }) => { in connector_fd_reader()
309 Ok(h4::Packet { h4_type, payload }) => { in connector_fd_reader()
/tools/test/connectivity/acts/framework/acts/controllers/monsoon_lib/sampling/hvpm/
Dpacket.py131 class Packet(object): class
167 num_data_bytes = (len(sampled_bytes) - Packet.FIRST_MEASUREMENT_OFFSET)
Dtransformers.py42 from acts.controllers.monsoon_lib.sampling.hvpm.packet import Packet
88 self.array = array.array('B', b'\x00' * Packet.MAX_PACKET_SIZE)
139 Packet.MAX_PACKET_SIZE,
203 buffer[i] = Packet(buffer[i])
/tools/test/connectivity/acts/framework/acts/controllers/monsoon_lib/sampling/lvpm_stock/
Dpacket.py135 class Packet(object): class
181 num_data_bytes = len(sampled_bytes) - Packet.FIRST_MEASUREMENT_OFFSET
Dstock_transformers.py38 from acts.controllers.monsoon_lib.sampling.lvpm_stock.packet import Packet
184 buffer[i] = Packet(packet, time_of_read, time_since_last_read)
/tools/netsim/rust/cli/
Dnetsim-cli.md59 * Advertise Packet Options:
87 * Advertise Packet Options:
111 * \<STATE\>: Packet capture state [possible values: on, off]
/tools/netsim/rust/daemon/src/wifi/
Dframe.rs19 use pdl_runtime::Packet;
Dhwsim_attr_set.rs21 use pdl_runtime::Packet;
98 fn extend_attributes<P: Packet>(&mut self, packet: P) { in extend_attributes()
Dmedium.rs22 use pdl_runtime::Packet;
/tools/netsim/proto/netsim/
Dstats.proto19 // Message for Invalid Packet
/tools/apkzlib/src/test/resources/testData/packaging/text-files/
Drfc2460.txt47 5. Packet Size Issues...........................................24
52 8.2 Maximum Packet Lifetime.................................28
690 must discard the packet and send an ICMP Packet Too Big message to
1314 5. Packet Size Issues
1362 originating IPv6 node may receive an ICMP Packet Too Big message
1490 | Upper-Layer Packet Length |
1508 o The Upper-Layer Packet Length in the pseudo-header is the
1545 8.2 Maximum Packet Lifetime
2090 a Routing header must send an ICMP Packet Too Big message in
2101 "Payload Length" field to "Upper-Layer Packet Length". Also
/tools/netsim/rust/daemon/src/bluetooth/
Dbeacon.rs41 use pdl_runtime::Packet;