HomeSort by relevance Sort by last modified time
    Searched refs:Tcb (Results 1 - 22 of 22) sorted by null

  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
Tcp4Timer.c 22 @param Tcb Pointer to the TCP_CB of this TCP instance.
27 IN OUT TCP_CB *Tcb
33 @param Tcb Pointer to the TCP_CB of this TCP instance.
38 IN OUT TCP_CB *Tcb
44 @param Tcb Pointer to the TCP_CB of this TCP instance.
49 IN OUT TCP_CB *Tcb
55 @param Tcb Pointer to the TCP_CB of this TCP instance.
60 IN OUT TCP_CB *Tcb
66 @param Tcb Pointer to the TCP_CB of this TCP instance.
71 IN OUT TCP_CB *Tcb
    [all...]
Tcp4Input.c 22 @param Tcb Pointer to the TCP_CB of this TCP instance.
31 IN TCP_CB *Tcb,
35 return (TCP_SEQ_LEQ (Tcb->RcvWl2, Seg->End) &&
36 TCP_SEQ_LT (Seg->Seq, Tcb->RcvWl2 + Tcb->RcvWnd));
43 @param Tcb Pointer to the TCP_CB of this TCP instance.
49 IN OUT TCP_CB *Tcb,
59 if (Tcb->CongestState != TCP_CONGEST_RECOVER) {
64 FlightSize = TCP_SUB_SEQ (Tcb->SndNxt, Tcb->SndUna);
    [all...]
Tcp4Misc.c 48 Initialize the Tcb local related members.
50 @param Tcb Pointer to the TCP_CB of this TCP instance.
55 IN OUT TCP_CB *Tcb
61 Tcb->HeadSum = NetPseudoHeadChecksum (
62 Tcb->LocalEnd.Ip,
63 Tcb->RemoteEnd.Ip,
68 Tcb->Iss = TcpGetIss ();
69 Tcb->SndUna = Tcb->Iss;
70 Tcb->SndNxt = Tcb->Iss;
    [all...]
Tcp4Dispatcher.c 24 @param Tcb Pointer to the TCP_CB of this TCP instance.
39 IN TCP_CB *Tcb,
45 Ip4 = Tcb->IpInfo->Ip.Ip4;
63 @param Tcb Pointer to the TCP_CB of this TCP instance.
74 IN TCP_CB *Tcb,
84 Sock = Tcb->Sk;
91 *(Mode->Tcp4State) = (EFI_TCP4_CONNECTION_STATE) Tcb->State;
100 ConfigData->TypeOfService = Tcb->Tos;
101 ConfigData->TimeToLive = Tcb->Ttl;
103 AccessPoint->UseDefaultAddress = Tcb->UseDefaultAddr;
    [all...]
Tcp4Func.h 29 Try to find one Tcb whose <Ip, Port> equals to <IN Addr, IN Port>.
34 @return The Tcb which matches the <Addr Port> paire exists or not.
66 Insert a Tcb into the proper queue.
68 @param Tcb Pointer to the TCP_CB to be inserted.
70 @retval 0 The Tcb is inserted successfully.
76 IN TCP_CB *Tcb
80 Clone a TCP_CB from Tcb.
82 @param Tcb Pointer to the TCP_CB to be cloned.
89 IN TCP_CB *Tcb
104 Initialize the Tcb local related members.
    [all...]
Tcp4Output.c 35 @param Tcb Pointer to the TCP_CB of this TCP instance.
42 IN TCP_CB *Tcb
49 if (TCP_SEQ_GT (Tcb->RcvWl2 + Tcb->RcvWnd, Tcb->RcvNxt)) {
52 Tcb->RcvWl2 + Tcb->RcvWnd,
53 Tcb->RcvNxt
64 @param Tcb Pointer to the TCP_CB of this TCP instance.
71 IN TCP_CB *Tcb
    [all...]
Tcp4Option.c 74 @param Tcb Pointer to the TCP_CB of this TCP instance.
81 IN TCP_CB *Tcb
87 ASSERT ((Tcb != NULL) && (Tcb->Sk != NULL));
89 BufSize = GET_RCV_BUFFSIZE (Tcb->Sk);
105 @param Tcb Pointer to the TCP_CB of this TCP instance.
113 IN TCP_CB *Tcb,
120 ASSERT ((Tcb != NULL) && (Nbuf != NULL) && (Nbuf->Tcp == NULL));
129 if (!TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_NO_TS) &&
131 TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_RCVD_TS))) {
    [all...]
Tcp4Option.h 72 @param Tcb Pointer to the TCP_CB of this TCP instance.
79 IN TCP_CB *Tcb
85 @param Tcb Pointer to the TCP_CB of this TCP instance.
93 IN TCP_CB *Tcb,
100 @param Tcb Pointer to the TCP_CB of this TCP instance.
108 IN TCP_CB *Tcb,
132 @param Tcb Pointer to the TCP_CB of this TCP instance.
141 IN TCP_CB *Tcb,
Tcp4Io.c 51 @param Tcb Pointer to the TCP_CB of this TCP instance.
62 IN TCP_CB *Tcb,
80 if (NULL == Tcb) {
91 Sock = Tcb->Sk;
94 IpSender = Tcb->IpInfo;
Tcp4Driver.h 90 @param Tcb Pointer to the TCP_CB of this TCP instance.
101 IN TCP_CB *Tcb,
Tcp4Proto.h 348 IN OUT TCP_CB *Tcb
  /device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
TcpTimer.c 23 @param[in, out] Tcb Pointer to the TCP_CB of this TCP instance.
28 IN OUT TCP_CB *Tcb
34 @param[in, out] Tcb Pointer to the TCP_CB of this TCP instance.
39 IN OUT TCP_CB *Tcb
45 @param[in, out] Tcb Pointer to the TCP_CB of this TCP instance.
50 IN OUT TCP_CB *Tcb
56 @param[in, out] Tcb Pointer to the TCP_CB of this TCP instance.
61 IN OUT TCP_CB *Tcb
67 @param[in, out] Tcb Pointer to the TCP_CB of this TCP instance.
72 IN OUT TCP_CB *Tcb
    [all...]
TcpInput.c 21 @param[in] Tcb Pointer to the TCP_CB of this TCP instance.
30 IN TCP_CB *Tcb,
34 return (TCP_SEQ_LEQ (Tcb->RcvWl2, Seg->End) &&
35 TCP_SEQ_LT (Seg->Seq, Tcb->RcvWl2 + Tcb->RcvWnd));
41 @param[in, out] Tcb Pointer to the TCP_CB of this TCP instance.
47 IN OUT TCP_CB *Tcb,
57 if (Tcb->CongestState != TCP_CONGEST_RECOVER) {
62 FlightSize = TCP_SUB_SEQ (Tcb->SndNxt, Tcb->SndUna);
    [all...]
TcpMisc.c 47 Initialize the Tcb local related members.
49 @param[in, out] Tcb Pointer to the TCP_CB of this TCP instance.
54 IN OUT TCP_CB *Tcb
60 if (Tcb->Sk->IpVersion == IP_VERSION_4) {
61 Tcb->HeadSum = NetPseudoHeadChecksum (
62 Tcb->LocalEnd.Ip.Addr[0],
63 Tcb->RemoteEnd.Ip.Addr[0],
68 Tcb->HeadSum = NetIp6PseudoHeadChecksum (
69 &Tcb->LocalEnd.Ip.v6,
70 &Tcb->RemoteEnd.Ip.v6,
    [all...]
TcpDispatcher.c 22 @param[in] Tcb Pointer to the TCP_CB of this TCP instance.
37 IN TCP_CB *Tcb,
43 Ip = Tcb->IpInfo->Ip;
60 @param[in] Tcb Pointer to the TCP_CB of this TCP instance.
71 IN TCP_CB *Tcb,
81 Sock = Tcb->Sk;
88 *(Mode->Tcp4State) = (EFI_TCP4_CONNECTION_STATE) Tcb->State;
97 ConfigData->TypeOfService = Tcb->Tos;
98 ConfigData->TimeToLive = Tcb->Ttl;
100 AccessPoint->UseDefaultAddress = Tcb->UseDefaultAddr;
    [all...]
TcpOutput.c 35 @param[in] Tcb Pointer to the TCP_CB of this TCP instance.
42 IN TCP_CB *Tcb
49 if (TCP_SEQ_GT (Tcb->RcvWl2 + Tcb->RcvWnd, Tcb->RcvNxt)) {
52 Tcb->RcvWl2 + Tcb->RcvWnd,
53 Tcb->RcvNxt
63 @param[in] Tcb Pointer to the TCP_CB of this TCP instance.
70 IN TCP_CB *Tcb
    [all...]
TcpFunc.h 27 @param[in, out] Tcb Pointer to the TCP_CB of this TCP instance.
33 IN OUT TCP_CB *Tcb
41 Initialize the Tcb locally related members.
43 @param[in, out] Tcb Pointer to the TCP_CB of this TCP instance.
48 IN OUT TCP_CB *Tcb
54 @param[in, out] Tcb Pointer to the TCP_CB of this TCP instance.
61 IN OUT TCP_CB *Tcb,
67 Try to find one Tcb whose <Ip, Port> equals to <IN Addr, IN Port>.
75 @retval TRUE The Tcb which matches the <Addr Port> pairs exists.
111 Insert a Tcb into the proper queue.
    [all...]
TcpOption.c 74 @param[in] Tcb Pointer to the TCP_CB of this TCP instance.
81 IN TCP_CB *Tcb
87 ASSERT ((Tcb != NULL) && (Tcb->Sk != NULL));
89 BufSize = GET_RCV_BUFFSIZE (Tcb->Sk);
103 @param[in] Tcb Pointer to the TCP_CB of this TCP instance.
111 IN TCP_CB *Tcb,
118 ASSERT ((Tcb != NULL) && (Nbuf != NULL) && (Nbuf->Tcp == NULL));
127 if (!TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_NO_TS) &&
129 TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_RCVD_TS))
    [all...]
TcpIo.c 57 @param[in] Tcb Pointer to the TCP_CB of this TCP instance.
69 IN TCP_CB *Tcb,
83 if (NULL == Tcb) {
105 Sock = Tcb->Sk;
108 IpSender = Tcb->IpInfo;
112 // It's IPv6 and this TCP segment belongs to a solid TCB, in such case
115 if (!Tcb->RemoteIpZero) {
149 @param[in] Tcb Pointer to the TCP_CB of this TCP instance.
166 IN TCP_CB *Tcb,
175 if (NULL == Tcb) {
    [all...]
TcpOption.h 72 @param[in] Tcb Pointer to the TCP_CB of this TCP instance.
79 IN TCP_CB *Tcb
85 @param[in] Tcb Pointer to the TCP_CB of this TCP instance.
93 IN TCP_CB *Tcb,
100 @param[in] Tcb Pointer to the TCP_CB of this TCP instance.
108 IN TCP_CB *Tcb,
132 @param[in] Tcb Pointer to the TCP_CB of this TCP instance.
141 IN TCP_CB *Tcb,
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
IScsiProto.c     [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/IScsiDxe/
IScsiProto.c     [all...]

Completed in 509 milliseconds