Searched refs:sequence (Results 1 - 25 of 37) sorted by last modified time

12

/haiku/src/add-ons/kernel/network/protocols/tcp/
H A DTCPEndpoint.cpp99 fSequence(segment.sequence),
135 fSequence(segment.sequence),
352 in_window(const tcp_sequence& sequence, const tcp_sequence& receiveNext, argument
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, receiveNex
[all...]
H A DEndpointManager.cpp561 outSegment.sequence = 0;
568 outSegment.acknowledge = segment.sequence + buffer->size;
573 outSegment.sequence = segment.acknowledge;
H A Dtcp.cpp266 dprintf(" sequence: %lu\n", header.Sequence());
413 header.sequence = htonl(segment.sequence);
433 "win %u\n", buffer, segment.flags, segment.sequence,
715 segment.sequence = header.Sequence();
H A Dtcp.h48 uint32 sequence; member in struct:tcp_header
65 uint32 Sequence() const { return B_BENDIAN_TO_HOST_INT32(sequence); }
75 inline tcp_sequence(uint32 sequence) argument
76 : fNumber(sequence)
85 inline tcp_sequence& operator=(tcp_sequence sequence) argument
87 fNumber = sequence.fNumber;
91 inline tcp_sequence& operator+=(tcp_sequence sequence) argument
93 fNumber += sequence.fNumber;
247 uint32 sequence; member in struct:tcp_segment_header
H A DBufferQueue.cpp61 BufferQueue::SetInitialSequence(tcp_sequence sequence) argument
64 sequence.Number()));
66 fFirstSequence = fLastSequence = sequence;
79 BufferQueue::Add(net_buffer *buffer, tcp_sequence sequence) argument
81 TRACE(("BufferQueue@%p::Add(buffer %p, size %" B_PRIu32 ", sequence %"
82 B_PRIu32 ")\n", this, buffer, buffer->size, sequence.Number()));
88 if (tcp_sequence(sequence + buffer->size) <= fFirstSequence
94 if (sequence < fFirstSequence) {
97 (fFirstSequence - sequence).Number());
98 sequence
234 RemoveUntil(tcp_sequence sequence) argument
284 Get(net_buffer *buffer, tcp_sequence sequence, size_t bytes) argument
442 PopulateSackInfo(tcp_sequence sequence, int maxSackCount, tcp_sack* sacks) argument
[all...]
H A DBufferQueue.h26 void SetInitialSequence(tcp_sequence sequence);
29 void Add(net_buffer* buffer, tcp_sequence sequence);
30 status_t RemoveUntil(tcp_sequence sequence);
31 status_t Get(net_buffer* buffer, tcp_sequence sequence,
37 size_t Available(tcp_sequence sequence) const;
41 int PopulateSackInfo(tcp_sequence sequence, int maxSackCount, tcp_sack* sacks);
/haiku/src/add-ons/kernel/drivers/audio/hda/
H A Dhda_codec.cpp661 uint32 sequence = CONF_DEFAULT_SEQUENCE(widget.d.pin.config); local
662 if (audioGroup->associations[index].pins[sequence] != 0) {
665 audioGroup->associations[index].pins[sequence] = widget.node_id;
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A DInode.cpp145 inode.sequence = 0; // incremented each time mtime value is changed
H A Dbtrfs.h288 uint64 sequence; member in struct:btrfs_inode
300 uint64 Sequence() const { return B_LENDIAN_TO_HOST_INT64(sequence); }
/haiku/src/add-ons/kernel/drivers/network/wlan/iaxwifi200/dev/pci/
H A Dif_iwxreg.h766 * Host sets this during RF KILL power-down sequence (HW, SW, CT KILL)
2417 * @bad_cmd_seq_num: sequence number of the erroneous command
5370 * @ssn: the starting sequence number
5914 * @IWX_AGG_TX_STATE_SEQ_NUM_MSK: Command ID and sequence number of Tx command for
5973 * @sequence: Sequence # for this frame's Tx cmd (not SSN!)
5977 uint16_t sequence; member in struct:iwx_agg_tx_status
6011 * @seq_ctl: sequence control from the Tx cmd
6068 * @seq_ctl: sequence control from the Tx cmd
7489 * @rx_secur_seq_cnt: RX security sequence counter for the key
/haiku/src/system/kernel/
H A Delf.cpp2463 info->sequence = 0;
/haiku/headers/private/libroot/
H A Dpthread_private.h62 int32 sequence; member in struct:pthread_key
67 int32 sequence; member in struct:pthread_key_data
/haiku/src/system/runtime_loader/
H A Dimages.cpp478 info.basic_info.sequence = 0;
/haiku/headers/os/kernel/
H A Dimage.h25 int32 sequence; member in struct:__anon2
/haiku/src/add-ons/kernel/drivers/network/wlan/iprowifi4965/dev/iwn/
H A Dif_iwnreg.h1360 * In addition, the sequence number is treated as the sequence
1361 * number of the TX command, NOT the 802.11 sequence number!
1397 /* Command ID and sequence number of Tx command for this frame */
1429 uint16_t sequence; member in struct:iwn5000_tx_stat
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DRequestBuilder.cpp209 RequestBuilder::Lock(OpenState* state, LockInfo* lock, uint32* sequence, argument
231 fRequest->Stream().AddUInt(*sequence);
243 (*sequence)--;
H A DRequestBuilder.h45 uint32* sequence, bool reclaim = false);
H A DNFS4Object.h23 OpenState* state = NULL, uint32* sequence = NULL);
26 OpenState* state, uint32* sequence);
H A DFileSystem.h73 inline void OpenOwnerSequenceUnlock(uint32 sequence);
217 FileSystem::OpenOwnerSequenceUnlock(uint32 sequence) argument
219 fOpenOwnerSequence = sequence;
/haiku/src/kits/debug/
H A DSymbolLookup.cpp575 fInfo.sequence = 0;
H A DImage.cpp237 fInfo.sequence = 0;
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DJournal.h58 uint32 sequence; member in struct:JournalHeader
66 { return B_BENDIAN_TO_HOST_INT32(sequence); }
72 { sequence = B_HOST_TO_BENDIAN_INT32(Sequence() + 1); }
74 { sequence = B_HOST_TO_BENDIAN_INT32(Sequence() - 1); }
75 void MakeDescriptor(uint32 sequence);
76 void MakeCommit(uint32 sequence);
H A DJournal.cpp67 JournalHeader::MakeDescriptor(uint32 sequence) argument
70 this->sequence = B_HOST_TO_BENDIAN_INT32(sequence);
76 JournalHeader::MakeCommit(uint32 sequence) argument
79 this->sequence = B_HOST_TO_BENDIAN_INT32(sequence);
/haiku/src/system/libroot/posix/pthread/
H A Dpthread_key.cpp18 Returns the destructor's sequence in \a sequence.
21 get_key_destructor(uint32 key, int32& sequence) argument
26 sequence = sKeyTable[key].sequence;
27 if (sequence == PTHREAD_UNUSED_SEQUENCE)
31 } while (sKeyTable[key].sequence != sequence);
39 \a sequence must be the sequence o
43 get_key_value(pthread_thread* thread, uint32 key, int32 sequence) argument
67 int32 sequence; local
86 int32 sequence = sKeyTable[key].sequence; local
[all...]
/haiku/src/add-ons/input_server/filters/shortcut_catcher/
H A DCommandActuators.cpp613 const char* sequence; local
614 if (from->FindString("sequence", 0, &sequence) == B_OK)
615 fSequence = sequence;
849 into->AddString("sequence", fSequence.String());

Completed in 331 milliseconds

12