Home
last modified time | relevance | path

Searched refs:TCP_HEAD (Results 1 – 15 of 15) sorted by relevance

/device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
DTcpOutput.c290 TCP_HEAD *Head; in TcpTransmitSegment()
312 Len += sizeof (TCP_HEAD); in TcpTransmitSegment()
314 Head = (TCP_HEAD *) NetbufAllocSpace ( in TcpTransmitSegment()
316 sizeof (TCP_HEAD), in TcpTransmitSegment()
1090 IN TCP_HEAD *Head, in TcpSendReset()
1098 TCP_HEAD *Nhead; in TcpSendReset()
1114 Nhead = (TCP_HEAD *) NetbufAllocSpace ( in TcpSendReset()
1116 sizeof (TCP_HEAD), in TcpSendReset()
1148 Nhead->HeadLen = (UINT8) (sizeof (TCP_HEAD) >> 2); in TcpSendReset()
1183 TCP_HEAD *Head; in TcpVerifySegment()
DTcpMisc.c565 return (UINT16) (Ip4Mode.MaxPacketSize - sizeof (TCP_HEAD)); in TcpGetRcvMss()
595 return (UINT16) (Ip6Mode.MaxPacketSize - sizeof (TCP_HEAD)); in TcpGetRcvMss()
695 TCP_HEAD *Head; in TcpFormatNetbuf()
698 Head = (TCP_HEAD *) NetbufGetByte (Nbuf, 0, NULL); in TcpFormatNetbuf()
935 TCP_HEAD *Nhead; in TcpResetConnection()
943 Nhead = (TCP_HEAD *) NetbufAllocSpace ( in TcpResetConnection()
945 sizeof (TCP_HEAD), in TcpResetConnection()
958 Nhead->HeadLen = (UINT8) (sizeof (TCP_HEAD) >> 2); in TcpResetConnection()
DTcpOption.h125 IN TCP_HEAD *Tcp,
DTcpOption.c238 IN TCP_HEAD *Tcp, in TcpParseOption()
252 TotalLen = (UINT8) ((Tcp->HeadLen << 2) - sizeof (TCP_HEAD)); in TcpParseOption()
DTcpInput.c735 TCP_HEAD *Head; in TcpInput()
749 Head = (TCP_HEAD *) NetbufGetByte (Nbuf, 0, NULL); in TcpInput()
752 if (Nbuf->TotalSize < sizeof (TCP_HEAD)) { in TcpInput()
1563 TCP_HEAD *Head; in TcpIcmpInput()
1570 if (Nbuf->TotalSize < sizeof (TCP_HEAD)) { in TcpIcmpInput()
1574 Head = (TCP_HEAD *) NetbufGetByte (Nbuf, 0, NULL); in TcpIcmpInput()
DTcpFunc.h439 IN TCP_HEAD *Head,
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
DTcp4Output.c296 TCP_HEAD *Head; in TcpTransmitSegment()
318 Len += sizeof (TCP_HEAD); in TcpTransmitSegment()
320 Head = (TCP_HEAD *) NetbufAllocSpace ( in TcpTransmitSegment()
322 sizeof (TCP_HEAD), in TcpTransmitSegment()
1040 IN TCP_HEAD *Head, in TcpSendReset()
1047 TCP_HEAD *Nhead; in TcpSendReset()
1063 Nhead = (TCP_HEAD *) NetbufAllocSpace ( in TcpSendReset()
1065 sizeof (TCP_HEAD), in TcpSendReset()
1097 Nhead->HeadLen = (UINT8) (sizeof (TCP_HEAD) >> 2); in TcpSendReset()
1127 TCP_HEAD *Head; in TcpVerifySegment()
DTcp4Misc.c486 return (UINT16) (Ip4Mode.MaxPacketSize - sizeof (TCP_HEAD)); in TcpGetRcvMss()
589 TCP_HEAD *Head; in TcpFormatNetbuf()
592 Head = (TCP_HEAD *) NetbufGetByte (Nbuf, 0, NULL); in TcpFormatNetbuf()
636 TCP_HEAD *Nhead; in TcpResetConnection()
644 Nhead = (TCP_HEAD *) NetbufAllocSpace ( in TcpResetConnection()
646 sizeof (TCP_HEAD), in TcpResetConnection()
659 Nhead->HeadLen = (UINT8) (sizeof (TCP_HEAD) >> 2); in TcpResetConnection()
DTcp4Option.h125 IN TCP_HEAD *Tcp,
DTcp4Option.c239 IN TCP_HEAD *Tcp, in TcpParseOption()
253 TotalLen = (UINT8) ((Tcp->HeadLen << 2) - sizeof (TCP_HEAD)); in TcpParseOption()
DTcp4Input.c701 TCP_HEAD *Head; in TcpInput()
712 Head = (TCP_HEAD *) NetbufGetByte (Nbuf, 0, NULL); in TcpInput()
715 if (Nbuf->TotalSize < sizeof (TCP_HEAD)) { in TcpInput()
1425 TCP_HEAD *Head; in TcpIcmpInput()
1432 if (Nbuf->TotalSize < sizeof (TCP_HEAD)) { in TcpIcmpInput()
1436 Head = (TCP_HEAD *) NetbufGetByte (Nbuf, 0, NULL); in TcpIcmpInput()
DTcp4Func.h263 IN TCP_HEAD *Head,
/device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/
DIpSecImpl.c1033 TCP_HEAD *TcpHeader; in IpSecTunnelInboundPacket()
1081 TcpHeader = (TCP_HEAD *) ((UINT8 *)IpPayload + (((IP4_HEAD *)IpPayload)->HeadLen << 2)); in IpSecTunnelInboundPacket()
1141 TcpHeader = (TCP_HEAD *)(IpPayload + sizeof (EFI_IP6_HEADER) + OptionLen); in IpSecTunnelInboundPacket()
1288 Packet->Tcp = (TCP_HEAD *) NetbufGetByte (Packet, 0, 0); in IpSecTunnelOutboundPacket()
/device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
DNetLib.h208 } TCP_HEAD; typedef
1543 TCP_HEAD *Tcp; // Transport layer header, for fast access
/device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
DIp6Output.c600 Packet->Tcp = (TCP_HEAD *) NetbufGetByte (Packet, 0, NULL); in Ip6Output()