Searched refs:Seq (Results 1 - 13 of 13) sorted by relevance

/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
H A DTcp4Output.c332 Head->Seq = NTOHL (Seg->Seq);
346 TCP_SEQ_BETWEEN (Seg->Seq, Tcb->SndPsh, Seg->End)) {
364 TCP_SEQ_LEQ (Seg->Seq, Tcb->SndUp)) {
370 Seg->Urg = (UINT16) TCP_SUB_SEQ (Tcb->SndUp, Seg->Seq);
375 Seg->Seq),
406 @param Seq The sequence number of the segment.
415 IN TCP_SEQNO Seq,
430 ASSERT ((Tcb != NULL) && TCP_SEQ_LEQ (Seq, Tcb->SndNxt) && (Len > 0));
433 // Find the segment that contains the Seq
413 TcpGetSegmentSndQue( IN TCP_CB *Tcb, IN TCP_SEQNO Seq, IN UINT32 Len ) argument
559 TcpGetSegmentSock( IN TCP_CB *Tcb, IN TCP_SEQNO Seq, IN UINT32 Len ) argument
622 TcpGetSegment( IN TCP_CB *Tcb, IN TCP_SEQNO Seq, IN UINT32 Len ) argument
737 TCP_SEQNO Seq; local
1181 TCP_SEQNO Seq; local
[all...]
H A DTcp4Input.c36 TCP_SEQ_LT (Seg->Seq, Tcb->RcvWl2 + Tcb->RcvWnd));
278 if (TCP_SEQ_LEQ (Seg->End, Left) || TCP_SEQ_LEQ (Right, Seg->Seq)) {
283 Seg->Seq = Seg->End;
291 if (TCP_SEQ_LT (Seg->Seq, Left)) {
293 Drop = TCP_SUB_SEQ (Left, Seg->Seq);
294 Urg = Seg->Seq + Seg->Urg;
295 Seg->Seq = Left;
307 if (TCP_SEQ_LT (Urg, Seg->Seq)) {
311 Seg->Urg = (UINT16) TCP_SUB_SEQ (Urg, Seg->Seq);
377 TCP_SEQNO Seq; local
1427 TCP_SEQNO Seq; local
[all...]
H A DTcp4Func.h296 Retransmit the segment from sequence Seq.
299 @param Seq The sequence number of the segment to be retransmitted.
308 IN TCP_SEQNO Seq
359 @param Seq The sequence number of the segment.
368 IN TCP_SEQNO Seq,
376 @param Seq The sequence number of the segment.
385 IN TCP_SEQNO Seq,
390 Get a segment starting from sequence Seq of a maximum
394 @param Seq The sequence number of the segment.
403 IN TCP_SEQNO Seq,
[all...]
H A DTcp4Misc.c109 Tcb->SndWl1 = Seg->Seq;
134 Tcb->Irs = Seg->Seq;
596 Seg->Seq = NTOHL (Head->Seq);
598 Seg->End = Seg->Seq + (Nbuf->TotalSize - (Head->HeadLen << 2));
655 Nhead->Seq = HTONL (Tcb->SndNxt);
H A DTcp4Proto.h145 TCP_SEQNO Seq; ///< Starting sequence number member in struct:_TCP_SEG
146 TCP_SEQNO End; ///< The sequence of the last byte + 1, include SYN/FIN. End-Seq = SEG.LEN
193 TCP_SEQNO SndWl1; ///< Seq number used for last window update
/device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
H A DTcpOutput.c326 Head->Seq = NTOHL (Seg->Seq);
340 TCP_SEQ_BETWEEN (Seg->Seq, Tcb->SndPsh, Seg->End)
357 if (TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_SND_URG) && TCP_SEQ_LEQ (Seg->Seq, Tcb->SndUp)) {
363 Seg->Urg = (UINT16) TCP_SUB_SEQ (Tcb->SndUp, Seg->Seq);
368 Seg->Seq),
398 @param[in] Seq The sequence number of the segment.
407 IN TCP_SEQNO Seq,
422 ASSERT ((Tcb != NULL) && TCP_SEQ_LEQ (Seq, Tcb->SndNxt) && (Len > 0));
425 // Find the segment that contains the Seq
405 TcpGetSegmentSndQue( IN TCP_CB *Tcb, IN TCP_SEQNO Seq, IN UINT32 Len ) argument
551 TcpGetSegmentSock( IN TCP_CB *Tcb, IN TCP_SEQNO Seq, IN UINT32 Len ) argument
616 TcpGetSegment( IN TCP_CB *Tcb, IN TCP_SEQNO Seq, IN UINT32 Len ) argument
727 TCP_SEQNO Seq; local
781 TCP_SEQNO Seq; local
[all...]
H A DTcpInput.c35 TCP_SEQ_LT (Seg->Seq, Tcb->RcvWl2 + Tcb->RcvWnd));
302 if (TCP_SEQ_LEQ (Seg->End, Left) || TCP_SEQ_LEQ (Right, Seg->Seq)) {
307 Seg->Seq = Seg->End;
315 if (TCP_SEQ_LT (Seg->Seq, Left)) {
317 Drop = TCP_SUB_SEQ (Left, Seg->Seq);
318 Urg = Seg->Seq + Seg->Urg;
319 Seg->Seq = Left;
331 if (TCP_SEQ_LT (Urg, Seg->Seq)) {
335 Seg->Urg = (UINT16) TCP_SUB_SEQ (Urg, Seg->Seq);
399 TCP_SEQNO Seq; local
1565 TCP_SEQNO Seq; local
[all...]
H A DTcpMisc.c115 Tcb->SndWl1 = Seg->Seq;
140 Tcb->Irs = Seg->Seq;
703 Seg->Seq = NTOHL (Head->Seq);
705 Seg->End = Seg->Seq + (Nbuf->TotalSize - (Head->HeadLen << 2));
954 Nhead->Seq = HTONL (Tcb->SndNxt);
H A DTcpFunc.h354 Retransmit the segment from sequence Seq.
357 @param[in] Seq The sequence number of the segment to be retransmitted.
366 IN TCP_SEQNO Seq
H A DTcpProto.h220 TCP_SEQNO Seq; ///< Starting sequence number. member in struct:_TCP_SEG
221 TCP_SEQNO End; ///< The sequence of the last byte + 1, include SYN/FIN. End-Seq = SEG.LEN.
270 TCP_SEQNO SndWl1; ///< Seq number used for last window update.
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_enumerate.py178 class Seq: class in function:TestReversed.test_gc
183 s = Seq()
H A Dtest_iter.py343 class Seq: class in function:TestCase.test_builtin_filter
362 seq = Seq(*([bTrue, bFalse] * 25))
/device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
H A DNetLib.h164 UINT16 Seq; member in struct:__anon6540
200 TCP_SEQNO Seq; member in struct:__anon6545

Completed in 81 milliseconds