Home | History | Annotate | Download | only in TcpDxe

Lines Matching refs:TCP_CB

49   @param[in, out]  Tcb               Pointer to the TCP_CB of this TCP instance.

54 IN OUT TCP_CB *Tcb
96 @param[in, out] Tcb Pointer to the TCP_CB of this TCP instance.
103 IN OUT TCP_CB *Tcb,
238 @return Pointer to the TCP_CB with the least number of wildcards,
242 TCP_CB *
250 TCP_CB *Node;
251 TCP_CB *Match;
259 Node = NET_LIST_USER_STRUCT (Entry, TCP_CB, List);
321 TCP_CB *Tcb;
328 Tcb = NET_LIST_USER_STRUCT (Entry, TCP_CB, List);
340 Tcb = NET_LIST_USER_STRUCT (Entry, TCP_CB, List);
355 Locate the TCP_CB related to the socket pair.
365 @return Pointer to the related TCP_CB. If NULL, no match is found.
368 TCP_CB *
381 TCP_CB *Tcb;
393 Tcb = NET_LIST_USER_STRUCT (Entry, TCP_CB, List);
420 @param[in] Tcb Pointer to the TCP_CB to be inserted.
428 IN TCP_CB *Tcb
433 TCP_CB *Node;
459 Node = NET_LIST_USER_STRUCT (Entry, TCP_CB, List);
476 Clone a TCP_CB from Tcb.
478 @param[in] Tcb Pointer to the TCP_CB to be cloned.
480 @return Pointer to the new cloned TCP_CB; if NULL, error condition occurred.
483 TCP_CB *
485 IN TCP_CB *Tcb
488 TCP_CB *Clone;
490 Clone = AllocateZeroPool (sizeof (TCP_CB));
496 CopyMem (Clone, Tcb, sizeof (TCP_CB));
578 @param[in] Tcb Pointer to the TCP_CB of this TCP instance.
584 IN TCP_CB *Tcb,
658 @param[in] Tcb Pointer to the TCP_CB of this TCP instance.
666 IN TCP_CB *Tcb,
708 @param[in, out] Tcb Pointer to the TCP_CB that wants to initiate a
714 IN OUT TCP_CB *Tcb
728 @param[in, out] Tcb Pointer to the TCP_CB of this TCP instance.
733 IN OUT TCP_CB *Tcb
776 @param[in, out] Tcb Pointer to the TCP_CB of this TCP instance.
785 IN OUT TCP_CB *Tcb
823 @param[in] Tcb Pointer to the TCP_CB of this TCP instance.
828 IN TCP_CB *Tcb
870 @param[in] Tcb Pointer to the TCP_CB of the TCP instance.
875 IN TCP_CB *Tcb
902 @param[in] Tcb Pointer to the TCP_CB of the connection to be reset.
907 IN TCP_CB *Tcb
962 TCP_CB *Tcb;