Home
last modified time | relevance | path

Searched defs:socket (Results 1 – 20 of 20) sorted by relevance

/smoltcp-0.9.1/src/socket/
Draw.rs429 pub fn socket( in socket() function
460 pub fn socket( in socket() function
504 let mut socket = $socket(buffer(0), buffer(1)); localVariable
510 let mut socket = $socket(buffer(0), buffer(1)); localVariable
546 let mut socket = $socket(buffer(1), buffer(0)); localVariable
559 let mut socket = $socket(buffer(1), buffer(0)); localVariable
571 let mut socket = $socket(buffer(1), buffer(0)); localVariable
611 let mut socket = ipv4_locals::socket(buffer(0), buffer(2)); in test_send_illegal() localVariable
634 let mut socket = ipv6_locals::socket(buffer(0), buffer(2)); in test_send_illegal() localVariable
661 let mut socket = ipv4_locals::socket(buffer(1), buffer(0)); in test_recv_process() localVariable
[all …]
Dudp.rs496 fn socket( in socket() function
579 let mut socket = socket(buffer(0), buffer(0)); in test_bind_unaddressable() localVariable
585 let mut socket = socket(buffer(0), buffer(0)); in test_bind_twice() localVariable
599 let mut socket = socket(buffer(0), buffer(1)); in test_send_unaddressable() localVariable
631 let mut socket = socket(buffer(0), buffer(1)); in test_send_dispatch() localVariable
674 let mut socket = socket(buffer(1), buffer(0)); in test_recv_process() localVariable
695 let mut socket = socket(buffer(1), buffer(0)); in test_peek_process() localVariable
710 let mut socket = socket(buffer(1), buffer(0)); in test_recv_truncated_slice() localVariable
725 let mut socket = socket(buffer(1), buffer(0)); in test_peek_truncated_slice() localVariable
769 let mut socket = socket(buffer(1), buffer(0)); in test_doesnt_accept_wrong_port() localVariable
[all …]
Dicmp.rs596 pub fn socket( in socket() function
649 let mut socket = socket(buffer(0), buffer(1)); in test_send_unaddressable() localVariable
659 let mut socket = socket(buffer(0), buffer(1)); in test_send_dispatch() localVariable
748 let mut socket = socket(buffer(1), buffer(1)); in test_recv_process() localVariable
775 let mut socket = socket(buffer(1), buffer(1)); in test_accept_bad_id() localVariable
796 let mut socket = socket(buffer(1), buffer(1)); in test_accepts_udp() localVariable
891 let mut socket = socket(buffer(0), buffer(1)); in test_send_unaddressable() localVariable
901 let mut socket = socket(buffer(0), buffer(1)); in test_send_dispatch() localVariable
1000 let mut socket = socket(buffer(1), buffer(1)); in test_recv_process() localVariable
1032 let mut socket = socket(buffer(1), buffer(1)); in test_accept_bad_id() localVariable
[all …]
Ddhcpv4.rs724 socket: Socket<'static>, field
977 fn socket() -> TestSocket { in socket() function
Dtcp.rs2401 socket: Socket<'static>, field
2533 fn socket() -> TestSocket { in socket() function
2540 let mut socket = Socket::new(rx_buffer, tx_buffer); in socket_with_buffer_sizes() localVariable
/smoltcp-0.9.1/examples/
Dserver.rs94 let socket = sockets.get_mut::<udp::Socket>(udp_handle); in main() localVariable
114 let socket = sockets.get_mut::<tcp::Socket>(tcp1_handle); in main() localVariable
127 let socket = sockets.get_mut::<tcp::Socket>(tcp2_handle); in main() localVariable
163 let socket = sockets.get_mut::<tcp::Socket>(tcp3_handle); in main() localVariable
184 let socket = sockets.get_mut::<tcp::Socket>(tcp4_handle); in main() localVariable
Dsixlowpan.rs99 let socket = sockets.get_mut::<tcp::Socket>(tcp_handle); in main() localVariable
109 let socket = sockets.get_mut::<udp::Socket>(udp_handle); in main() localVariable
135 let socket = sockets.get_mut::<tcp::Socket>(tcp_handle); in main() localVariable
Dclient.rs66 let socket = sockets.get_mut::<tcp::Socket>(tcp_handle); in main() localVariable
76 let socket = sockets.get_mut::<tcp::Socket>(tcp_handle); in main() localVariable
Dmulticast.rs93 let socket = sockets.get_mut::<raw::Socket>(raw_handle); in main() localVariable
110 let socket = sockets.get_mut::<udp::Socket>(udp_handle); in main() localVariable
Dbenchmark.rs116 let socket = sockets.get_mut::<tcp::Socket>(tcp1_handle); in main() localVariable
134 let socket = sockets.get_mut::<tcp::Socket>(tcp2_handle); in main() localVariable
Dtcpdump.rs10 let mut socket = RawSocket::new(ifname.as_ref(), smoltcp::phy::Medium::Ethernet).unwrap(); in main() localVariable
Dsixlowpan_benchmark.rs188 let socket = sockets.get_mut::<tcp::Socket>(tcp1_handle); in main() localVariable
204 let socket = sockets.get_mut::<tcp::Socket>(tcp2_handle); in main() localVariable
Dloopback.rs128 let mut socket = sockets.get_mut::<tcp::Socket>(server_handle); in main() localVariable
146 let mut socket = sockets.get_mut::<tcp::Socket>(client_handle); in main() localVariable
Ddns.rs71 let socket = sockets.get_mut::<dns::Socket>(dns_handle); in main() localVariable
Dhttpclient.rs78 let socket = sockets.get_mut::<tcp::Socket>(tcp_handle); in main() localVariable
Dping.rs154 let socket = sockets.get_mut::<icmp::Socket>(icmp_handle); in main() localVariable
/smoltcp-0.9.1/src/iface/interface/
Dtests.rs467 let socket = sockets.get_mut::<udp::Socket>(socket_handle); in test_handle_udp_broadcast() localVariable
496 let socket = sockets.get_mut::<udp::Socket>(socket_handle); in test_handle_udp_broadcast() localVariable
956 let socket = sockets.get_mut::<icmp::Socket>(socket_handle); in test_icmpv4_socket() localVariable
1000 let socket = sockets.get_mut::<icmp::Socket>(socket_handle); in test_icmpv4_socket() localVariable
1284 let socket = sockets.get_mut::<udp::Socket>(udp_socket_handle); in test_raw_socket_with_udp_socket() localVariable
1355 let socket = sockets.get_mut::<udp::Socket>(udp_socket_handle); in test_raw_socket_with_udp_socket() localVariable
1588 let socket = sockets.get_mut::<udp::Socket>(udp_socket_handle); in test_sixlowpan_udp_with_fragmentation() localVariable
1633 let socket = sockets.get_mut::<udp::Socket>(udp_socket_handle); in test_sixlowpan_udp_with_fragmentation() localVariable
/smoltcp-0.9.1/src/iface/
Dsocket_set.rs24 pub(crate) socket: Socket<'a>, field
72 let socket = socket.upcast(); in add() localVariable
/smoltcp-0.9.1/fuzz/fuzz_targets/
Dtcp_headers.rs173 let mut socket = socket_set.get::<tcp::Socket>(server_handle); localVariable
188 let mut socket = socket_set.get::<tcp::Socket>(client_handle); localVariable
/smoltcp-0.9.1/src/
Dlib.rs164 pub mod socket; module