Lines Matching refs:Data
58 @param[in] Data The UINT32 Date to put in the buffer.
64 IN UINT32 Data
67 Data = HTONL (Data);
68 CopyMem (Buf, &Data, sizeof (UINT32));
115 UINT8 *Data;
132 Data = NetbufAllocSpace (
138 ASSERT (Data != NULL);
141 TcpPutUint32 (Data, TCP_OPTION_TS_FAST);
142 TcpPutUint32 (Data + 4, mTcpTick);
143 TcpPutUint32 (Data + 8, 0);
156 Data = NetbufAllocSpace (
162 ASSERT (Data != NULL);
165 TcpPutUint32 (Data, TCP_OPTION_WS_FAST | TcpComputeScale (Tcb));
171 Data = NetbufAllocSpace (Nbuf, TCP_OPTION_MSS_LEN, 1);
172 ASSERT (Data != NULL);
175 TcpPutUint32 (Data, TCP_OPTION_MSS_FAST | Tcb->RcvMss);
195 UINT8 *Data;
208 Data = NetbufAllocSpace (
214 ASSERT (Data != NULL);
217 TcpPutUint32 (Data, TCP_OPTION_TS_FAST);
218 TcpPutUint32 (Data + 4, mTcpTick);
219 TcpPutUint32 (Data + 8, Tcb->TsRecent);