Lines Matching refs:GetTcb
70 struct tcpcb &tp = GetTcb(); in Initialize()
112 Instance &Tcp::Endpoint::GetInstance(void) const { return AsNonConst(AsCoreType(GetTcb().instance))… in GetInstance()
116 const struct tcpcb &tp = GetTcb(); in GetLocalAddress()
128 const struct tcpcb &tp = GetTcb(); in GetPeerAddress()
141 struct tcpcb &tp = GetTcb(); in Bind()
157 struct tcpcb &tp = GetTcb(); in Connect()
186 struct tcpcb &tp = GetTcb(); in SendByReference()
213 struct tcpcb &tp = GetTcb(); in SendByExtension()
240 struct tcpcb &tp = GetTcb(); in ReceiveByReference()
250 struct tcpcb &tp = GetTcb(); in ReceiveContiguify()
260 struct tcpcb &tp = GetTcb(); in CommitReceive()
276 struct tcpcb &tp = GetTcb(); in SendEndOfStream()
283 struct tcpcb &tp = GetTcb(); in Abort()
303 bool Tcp::Endpoint::IsClosed(void) const { return GetTcb().t_state == TCP6S_CLOSED; } in IsClosed()
332 struct tcpcb *tp = &GetTcb(); in IsTimerActive()
390 struct tcpcb *tp = &GetTcb(); in FirePendingTimers()
486 const struct tcpcb &tp = GetTcb(); in GetSendBufferBytes()
492 const struct tcpcb &tp = GetTcb(); in GetInFlightBytes()
498 Address &Tcp::Endpoint::GetLocalIp6Address(void) { return *reinterpret_cast<Address *>(&GetTcb().la… in GetLocalIp6Address()
502 return *reinterpret_cast<const Address *>(&GetTcb().laddr); in GetLocalIp6Address()
505 Address &Tcp::Endpoint::GetForeignIp6Address(void) { return *reinterpret_cast<Address *>(&GetTcb().… in GetForeignIp6Address()
509 return *reinterpret_cast<const Address *>(&GetTcb().faddr); in GetForeignIp6Address()
515 const struct tcpcb *tp = &GetTcb(); in Matches()
654 struct tcpcb *tp = &endpoint->GetTcb(); in HandleMessage()
737 … aEndpoint.mReceiveAvailableCallback(&aEndpoint, cbuf_used_space(&aEndpoint.GetTcb().recvbuf), in ProcessSignals()
738 aEndpoint.GetTcb().reass_fin_index != -1, in ProcessSignals()
739 cbuf_free_space(&aEndpoint.GetTcb().recvbuf)); in ProcessSignals()
743 if (aEndpoint.GetTcb().t_state == TCP6S_TIME_WAIT && aEndpoint.mDisconnectedCallback != nullptr) in ProcessSignals()
773 struct tcpcb *tp = &endpoint.GetTcb(); in CanBind()
779 … VerifyOrExit(memcmp(&endpoint.GetTcb().laddr, &aSockName.mAddress, sizeof(tp->laddr)) != 0); in CanBind()
1019 rv = &endpoint.GetTcb(); in tcplp_sys_accept_ready()