Searched refs:seqno (Results 1 - 4 of 4) sorted by relevance

/external/nist-sip/java/gov/nist/javax/sip/header/
H A DCSeq.java54 * seqno field
56 protected Long seqno; field in class:CSeq
73 * @param seqno is the sequence number to assign.
76 public CSeq(long seqno, String method) { argument
78 this.seqno = Long.valueOf(seqno);
116 return buffer.append(seqno).append(SP).append(method.toUpperCase());
142 seqno = Long.valueOf(sequenceNumber);
169 if (this.seqno == null)
172 return this.seqno
[all...]
/external/tcpdump/
H A Dprint-dccp.c146 u_int64_t seqno = EXTRACT_24BITS(&seq_high) & 0xFFFFFF; local
151 seqno &= 0x00FFFF; /* clear reserved field */
152 seqno = (seqno << 32) + EXTRACT_32BITS(&seq_low);
155 return seqno;
/external/bluetooth/hcidump/parser/
H A Dcsr.c333 uint16_t type, length, seqno, varid, status; local
337 seqno = CSR_U16(frm);
342 printf("BCCMD: %s: len %d seqno %d varid 0x%4.4x status %d\n",
343 type2str(type), length, seqno, varid, status);
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DSIPDialog.java484 private long seqno; field in class:SIPDialog.DialogDeleteIfNoAckSentTask
486 public DialogDeleteIfNoAckSentTask(long seqno) { argument
487 this.seqno = seqno;
491 if (SIPDialog.this.highestSequenceNumberAcknowledged < seqno) {
1154 * Updates the next consumable seqno.
1171 * @return true if the dialogRequest sequence number matches the next consumable seqno.
1174 // have not yet set remote seqno - this is a fresh
2406 // out of order ACK sending. Old ACKs seqno's can always be ACKed.
3267 public synchronized void doDeferredDeleteIfNoAckSent(long seqno) { argument
[all...]

Completed in 137 milliseconds