Home | History | Annotate | Download | only in Tcp4Dxe

Lines Matching refs:TCP_CB

50   @param  Tcb                   Pointer to the TCP_CB of this TCP instance.

55 IN OUT TCP_CB *Tcb
89 @param Tcb Pointer to the TCP_CB of this TCP instance.
97 IN OUT TCP_CB *Tcb,
178 @return Pointer to the TCP_CB with the least number of wildcard,
182 TCP_CB *
189 TCP_CB *Node;
190 TCP_CB *Match;
198 Node = NET_LIST_USER_STRUCT (Entry, TCP_CB, List);
254 TCP_CB *Tcb;
261 Tcb = NET_LIST_USER_STRUCT (Entry, TCP_CB, List);
271 Tcb = NET_LIST_USER_STRUCT (Entry, TCP_CB, List);
285 Locate the TCP_CB related to the socket pair.
294 @return Pointer to the related TCP_CB, if NULL no match is found.
297 TCP_CB *
309 TCP_CB *Tcb;
321 Tcb = NET_LIST_USER_STRUCT (Entry, TCP_CB, List);
347 @param Tcb Pointer to the TCP_CB to be inserted.
355 IN TCP_CB *Tcb
360 TCP_CB *Node;
384 Node = NET_LIST_USER_STRUCT (Entry, TCP_CB, List);
402 @param Tcb Pointer to the TCP_CB to be cloned.
404 @return Pointer to the new cloned TCP_CB, if NULL error condition occurred.
407 TCP_CB *
409 IN TCP_CB *Tcb
412 TCP_CB *Clone;
414 Clone = AllocatePool (sizeof (TCP_CB));
421 CopyMem (Clone, Tcb, sizeof (TCP_CB));
493 @param Tcb Pointer to the TCP_CB of this TCP instance.
499 IN OUT TCP_CB *Tcb,
576 @param Tcb Pointer to the TCP_CB of this TCP instance.
584 IN TCP_CB *Tcb,
626 @param Tcb Pointer to the TCP_CB of the connection to be
632 IN TCP_CB *Tcb
675 @param Tcb Pointer to the TCP_CB that wants to initiate a
681 IN OUT TCP_CB *Tcb
696 @param Tcb Pointer to the TCP_CB of this TCP instance.
701 IN OUT TCP_CB *Tcb
742 @param Tcb Pointer to the TCP_CB of this TCP instance.
752 IN OUT TCP_CB *Tcb
791 @param Tcb Pointer to the TCP_CB of this TCP instance.
796 IN TCP_CB *Tcb
853 @param Tcb Pointer to the TCP_CB of the TCP instance.
858 IN TCP_CB *Tcb
895 TCP_CB *Tcb;