HomeSort by relevance Sort by last modified time
    Searched refs:ACK (Results 26 - 50 of 109) sorted by null

12 3 4 5

  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPServerTransaction.java 100 * ACK | | |
258 * seconds. This is because retransmissions of ACK are triggered on receipt of a 2xx,
366 // to catch the incoming ACK -- this is needed for tcp only.
379 // send an ACK and prevents a race condition for creation
    [all...]
SIPDialog.java 279 * This task waits till a pending ACK has been recorded and then sends out a re-INVITE. This
282 * ACK while it does mid call codec renegotiation. In the meanwhile, it cannot send an intervening
284 * condition. Hence we wait till the ACK for the previous re-INVITE has been sent before
342 * If we had to wait for ACK then wait for the ACK to actually get to the other
343 * side. Wait for any ACK retransmissions to finish. Then send out the request.
397 // If I ACK has not been seen on Dialog,
408 * seconds without receiving an ACK, the dialog is confirmed, but the session SHOULD
423 // Retransmit to 200 until ack receivedialog.
454 // confirmed state or ack seen if retransmit filter on
    [all...]
  /hardware/ti/omap4-aah/camera/inc/
BaseCameraAdapter.h 210 ACK = 0,
  /hardware/ti/omap4xxx/camera/inc/
BaseCameraAdapter.h 190 ACK = 0,
  /system/tpm/trunks/ftdi/
mpsse.h 121 enum i2c_ack { ACK = 0, NACK = 1 };
211 void SetAck(struct mpsse_context* mpsse, int ack);
mpsse.c 284 SetAck(mpsse, ACK);
706 * read back each individual ACK bit, so set the transmit size to 1.
722 /* Read in the ACK bit and store it in mpsse->rack */
919 * Returns the last received ACK bit.
923 * Returns either an ACK (0) or a NACK (1).
926 int ack = 0; local
929 ack = (mpsse->rack & 0x01);
932 return ack;
936 * Sets the transmitted ACK bit.
939 * @ack - 0 to send ACKs, 1 to send NACKs
    [all...]
  /external/boringssl/src/ssl/test/runner/
packet_adapter.go 116 p.log("Received timeout ACK", nil)
  /prebuilts/gdb/darwin-x86/lib/python2.7/curses/
textpad.py 111 elif ch in (curses.ascii.ACK, curses.KEY_RIGHT): # ^f
  /prebuilts/gdb/linux-x86/lib/python2.7/curses/
textpad.py 111 elif ch in (curses.ascii.ACK, curses.KEY_RIGHT): # ^f
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
textpad.py 111 elif ch in (curses.ascii.ACK, curses.KEY_RIGHT): # ^f
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
textpad.py 111 elif ch in (curses.ascii.ACK, curses.KEY_RIGHT): # ^f
  /system/extras/tests/net_test/
multinetwork_test.py 449 establishing_ack = packets.ACK(version, remoteaddr, myaddr, reply)[1]
465 desc, data = packets.ACK(version, myaddr, remoteaddr, establishing_ack,
472 ack = packets.ACK(version, remoteaddr, myaddr, data)[1]
474 self.ReceivePacketOn(netid, ack)
488 # Check the FIN was sent on the right interface, and ack it. We don't expect
493 desc, fin = packets.FIN(version, myaddr, remoteaddr, ack)
500 # the socket has no UID. If we're doing UID routing, the ack might be routed
502 desc, finackack = packets.ACK(version, myaddr, remoteaddr, finack)
504 self.ExpectPacketOn(netid, msg + ": expecting final ack", finackack
    [all...]
packets.py 84 seq=seq, ack=0,
94 ack=original.seq + was_syn_or_fin, seq=None,
100 return ("TCP SYN+ACK",
103 ack=original.seq + 1, seq=None,
106 def ACK(version, srcaddr, dstaddr, packet, payload=""):
111 desc = "TCP data" if payload else "TCP ACK"
116 ack=original.seq + ack_delta, seq=original.ack,
128 ack=original.seq + ack_delta, seq=original.ack,
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPResponse.java 620 * Sets the Via branch for CANCEL or ACK requests
628 if (method.equals( Request.ACK ) ) {
630 branch = getTopmostVia().getBranch(); // non-2xx ACK uses same branch
632 branch = Utils.getInstance().generateBranchId(); // 2xx ACK gets new branch
  /external/libnl/lib/
msg.c 78 * @par The ACK Netlink Message
79 * This message is actually used to denote both an ACK and a NACK.
80 * Typically, the direction is from FEC to CPC (in response to an ACK
786 PRINT_FLAG(ACK);
  /external/nist-sip/java/gov/nist/javax/sip/
SipStackImpl.java 181 * till an ACK has been sent before admitting the new re-INVITE. If the previous
183 * ACK before re-INVITE is allowed to be sent. If a dialog is not ACKed within
259 * If true then the listener will see the ACK for non-2xx responses for server
273 * Default is <it>false</it>. ACK Server Transaction is a Pseuedo-transaction.
274 * If you want termination notification on ACK transactions (so all server
352 * till an ACK has been sent before admitting the new re-INVITE. If the previous
354 * ACK before re-INVITE is allowed to be sent. If a dialog is not ACKed within
456 // delivered for ACK transactions.
675 || em.equalsIgnoreCase(Request.ACK)
    [all...]
DialogFilter.java 299 * assigned to the dialog. Forgive the sins of B2BUA's that like to record route ACK's
408 * A refer cannot be processed until we have either sent or received an ACK.
439 } else if (sipRequest.getMethod().equals(Request.ACK)) {
442 // This is an ack for a 3xx-6xx response. Just let the tx laer
445 sipStack.getStackLogger().logDebug("Processing ACK for INVITE Tx ");
449 sipStack.getStackLogger().logDebug("Processing ACK for dialog " + dialog);
466 * if it isn't an ACK for a 2xx response
472 * Found a transaction ( that we generated ) which is waiting for ACK. So ACK
477 sipStack.getStackLogger().logDebug("Found Tx pending ACK");
    [all...]
  /frameworks/opt/net/voip/src/java/com/android/server/sip/
SipSessionGroup.java     [all...]
  /prebuilts/tools/common/m2/repository/backport-util-concurrent/backport-util-concurrent/3.1/
backport-util-concurrent-3.1.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec-http2/4.1.0.CR3/
netty-codec-http2-4.1.0.CR3.jar 
  /prebuilts/tools/common/m2/repository/org/testng/testng/6.9.10/
testng-6.9.10.jar 
  /external/dagger2/lib/
auto-value-1.0.jar 
google-java-format-0.1-20151017.042846-2.jar 
  /external/guice/lib/
guava-16.0.1.jar 
  /external/owasp/sanitizer/distrib/lib/
guava.jar 

Completed in 1831 milliseconds

12 3 4 5