HomeSort by relevance Sort by last modified time
    Searched refs:ACK (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/chromium_org/tools/android/forwarder2/
command.h 19 ACK,
device_listener.cc 99 SendCommand(command::ACK, listener_port_, host_socket_.get());
host_controller.cc 107 if (ReceivedCommand(command::ACK, adb_control_socket_.get())) {
  /external/tcpdump/
tftp.h 51 #define ACK 04 /* acknowledgement */
print-tftp.c 52 { ACK, "ACK" }, /* acknowledgement */
126 case ACK:
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/arpa/
tftp.h 46 #define ACK 04 /* acknowledgement */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/arpa/
tftp.h 46 #define ACK 04 /* acknowledgement */
  /external/nist-sip/java/javax/sip/message/
Request.java 7 String ACK = "ACK";
  /external/iputils/
tftp.h 49 #define ACK 04 /* acknowledgement */
tftpd.c 352 register struct tftphdr *ap; /* ack packet */
379 alarm(rexmtval); /* read the ack */
392 if (ap->th_opcode == ACK) {
423 register struct tftphdr *ap; /* ack buffer */
432 ap->th_opcode = htons((u_short)ACK);
477 ap->th_opcode = htons((u_short)ACK); /* send the "final" ack */
487 block == dp->th_block) { /* then my last ack was lost */
488 (void) send(peer, ackbuf, 4, 0); /* resend final ack */
  /external/nist-sip/java/gov/nist/javax/sip/parser/
TokenNames.java 46 public static final String ACK = Request.ACK;
Parser.java 83 || token.getTokenType() == ACK
TokenTypes.java 43 public static final int ACK = START + 6;
Lexer.java 100 addKeyword(TokenNames.ACK, TokenTypes.ACK);
  /external/guava/guava/src/com/google/common/base/
Ascii.java 111 public static final byte ACK = 6;
  /external/smack/src/com/kenai/jbosh/
Attributes.java 38 static final BodyQName ACK = BodyQName.createBOSH("ack");
CMSessionParams.java 44 private final AttrAck ack; field in class:CMSessionParams
75 ack = aAck;
85 resp.getAttribute(Attributes.ACK));
166 return ack;
  /external/mtpd/
l2tp.c 40 /* 0 is reserved. We put ACK here just for convenience. */
42 ACK = 0,
61 "ACK", "SCCRQ", "SCCRP", "SCCCN", "STOPCCN", NULL, "HELLO", "OCRQ",
204 incoming.message = ACK;
211 /* Check if the packet is duplicated and send ACK if necessary. */
213 if (incoming.message != ACK) {
229 if (incoming.message != ACK) {
476 case ACK:
495 if (incoming.message == ACK) {
496 log_print(DEBUG, "Received ACK");
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
ascii.py 9 ACK = 0x06 # ^F
41 "NUL", "SOH", "STX", "ETX", "EOT", "ENQ", "ACK", "BEL",
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
ascii.py 9 ACK = 0x06 # ^F
41 "NUL", "SOH", "STX", "ETX", "EOT", "ENQ", "ACK", "BEL",
  /external/nist-sip/java/gov/nist/javax/sip/
EventScanner.java 175 // the same branch parameter for an ACK. Such an ACK should
180 if (sipRequest.getMethod().equals(Request.ACK)
189 "Detected broken client sending ACK with same branch! Passing...");
263 .equals(Request.ACK)) {
266 // if the user configured to get notification on ACK
321 * If the Listener does not ACK the 200 then we assume he
336 * If we dont see an ACK in 32 seconds, we want to tear down the dialog.
SipProviderImpl.java 285 if ( sipRequest.getMethod().equals(Request.ACK)) {
286 throw new TransactionUnavailableException ("Cannot create client transaction for " + Request.ACK);
465 if ( request.getMethod().equals(Request.ACK)) {
467 sipStack.getStackLogger().logError("Creating server transaction for ACK -- makes no sense!");
468 throw new TransactionUnavailableException("Cannot create Server transaction for ACK ");
672 && request.getMethod().equals(Request.ACK)) {
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPRequest.java 119 putName(Request.ACK);
805 * Creates a default ACK SIPRequest message for this original request. Note that the
807 * responseToHeader is null then the toHeader of this request is used to construct the ACK.
812 * @return A SIPRequest with an ACK method.
821 newRequest.setMethod(Request.ACK);
826 // Ack and cancel do not get ROUTE headers.
827 // Route header for ACK is assigned by the
847 // ACK MUST contain the same value for the
850 // MUST be equal to "ACK".
853 cseq.setMethod(Request.ACK);
    [all...]
  /external/deqp/framework/qphelper/
qpXmlWriter.c 71 case 6: repl = "<ACK>"; break;
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPClientTransaction.java 96 * ACK sent | | |
104 * | ACK sent, | |
108 * | ACK sent +-----------+Transport Err. | transitions
425 // If this is a TU-generated ACK request,
426 if (transactionRequest.getMethod().equals(Request.ACK)) {
435 // BUGBUG -- This suppresses sending the ACK uncomment this
438 // if (transactionRequest.getMethod() != Request.ACK)
458 } else if (transactionRequest.getMethod().equals(Request.ACK)) {
475 // if (transactionRequest.getMethod() != Request.ACK)
686 * ACK sent | |
    [all...]

Completed in 838 milliseconds

1 2 3