Lines Matching defs:sequence

99 		fSequence(segment.sequence),
135 fSequence(segment.sequence),
352 in_window(const tcp_sequence& sequence, const tcp_sequence& receiveNext,
355 return sequence >= receiveNext && sequence < (receiveNext + receiveWindow);
363 tcp_sequence sequence(segment.sequence);
366 return sequence == receiveNext;
367 return in_window(sequence, receiveNext, receiveWindow);
371 return in_window(sequence, receiveNext, receiveWindow)
372 || in_window(sequence + size - 1, receiveNext, receiveWindow);
1338 tcp_sequence sequence(segment.sequence);
1340 if (fLastAcknowledgeSent >= sequence
1341 && fLastAcknowledgeSent < (sequence + segmentLength))
1382 fFinishReceivedAt = segment.sequence + buffer->size;
1385 fReceiveQueue.Add(buffer, segment.sequence);
1409 fInitialReceiveSequence = segment.sequence;
1413 segment.sequence++;
1415 fReceiveNext = segment.sequence;
1416 fReceiveQueue.SetInitialSequence(segment.sequence);
1596 // and must be the expected sequence, and contain no control flags)
1600 && fReceiveNext == segment.sequence
1630 // Check sequence number
1646 if (fLastAcknowledgeSent <= segment.sequence
1647 && tcp_sequence(segment.sequence) < (fLastAcknowledgeSent
1666 && (fInitialReceiveSequence > segment.sequence
1681 int32 drop = (int32)(fReceiveNext - segment.sequence).Number();
1694 segment.sequence += drop;
1703 drop = (int32)(segment.sequence + buffer->size
1710 if (fReceiveWindow != 0 || segment.sequence != fReceiveNext)
1899 PrintAddress(buffer->destination), segment.flags, segment.sequence,
2049 segment.sequence = fSendNext.Number();
2056 PrintAddress(buffer->destination), segment.flags, segment.sequence,
2099 fRoundTripStartSequence = segment.sequence;
2360 // need to update the recover variable upon a sequence wraparound
2613 kprintf(" initial sequence: %" B_PRIu32 "\n",
2627 kprintf(" initial sequence: %" B_PRIu32 "\n",