Home
last modified time | relevance | path

Searched refs:tpl (Results 1 – 4 of 4) sorted by relevance

/openthread-3.5.0/src/core/net/
Dtcp6.cpp547 struct tcpcb_listen *tpl = &GetTcbListen(); in Initialize() local
555 memset(tpl, 0x00, sizeof(struct tcpcb_listen)); in Initialize()
556 tpl->instance = &aInstance; in Initialize()
568 struct tcpcb_listen *tpl = &GetTcbListen(); in Listen() local
572 memcpy(&tpl->laddr, &aSockName.mAddress, sizeof(tpl->laddr)); in Listen()
573 tpl->lport = port; in Listen()
574 tpl->t_state = TCP6S_LISTEN; in Listen()
583 struct tcpcb_listen *tpl = &GetTcbListen(); in StopListening() local
585 memset(&tpl->laddr, 0x00, sizeof(tpl->laddr)); in StopListening()
586 tpl->lport = 0; in StopListening()
[all …]
/openthread-3.5.0/third_party/mbedtls/repo/scripts/
Dgenerate_visualc_files.pl197 my ($tpl, @names) = @_;
201 (my $entry = $tpl) =~ s/{NAME}/$name/g;
/openthread-3.5.0/third_party/tcplp/bsdtcp/
Dtcp_input.c438 …struct ip6_hdr* ip6, struct tcphdr* th, otMessage* msg, struct tcpcb* tp, struct tcpcb_listen* tpl, in tcp_input() argument
470 KASSERT(tp || tpl, ("One of tp and tpl must be positive")); in tcp_input()
649 …KASSERT(tpl != NULL && tpl->t_state == TCP6S_LISTEN, ("listen socket must be in listening state!")… in tcp_input()
813 …tp = tcplp_sys_accept_ready(tpl, &ip6->ip6_src, th->th_sport); // Try to allocate an active socket… in tcp_input()
849 tp->lport = tpl->lport; in tcp_input()
956 tp->accepted_from = tpl; in tcp_input()
964 tp->accepted_from = tpl; in tcp_input()
1007 tcp_dropwithreset(ip6, th, NULL, tpl->instance, tlen, rstreason); in tcp_input()
Dtcp_var.h599 …struct ip6_hdr* ip6, struct tcphdr* th, otMessage* msg, struct tcpcb* tp, struct tcpcb_listen* tpl,