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

  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
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...]
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->RcvNxt, 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...]
  /device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
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...]
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->RcvNxt, 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...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
IScsiProto.c     [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/IScsiDxe/
IScsiProto.c     [all...]

Completed in 194 milliseconds