HomeSort by relevance Sort by last modified time
    Searched refs:BYE (Results 1 - 17 of 17) sorted by null

  /external/nist-sip/java/javax/sip/message/
Request.java 8 String BYE = "BYE";
  /external/nist-sip/java/gov/nist/javax/sip/parser/
TokenNames.java 47 public static final String BYE = Request.BYE;
Parser.java 85 || token.getTokenType() == BYE
TokenTypes.java 44 public static final int BYE = START + 7;
Lexer.java 102 addKeyword(TokenNames.BYE, TokenTypes.BYE);
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapResponse.java 37 || ImapConstants.BYE.equalsIgnoreCase(symbol);
ImapConstants.java 38 public static final String BYE = "BYE";
ImapResponseParser.java 70 * Exception thrown when we receive BYE. It derives from IOException, so it'll be treated
74 public static final String MESSAGE = "Received BYE";
158 * @exception ByeException when detects BYE.
178 // Handle this outside of try-catch. We don't have to dump protocol log when getting BYE.
179 if (response.is(0, ImapConstants.BYE)) {
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPDialog.java 230 private transient boolean byeSent; // Flag set when BYE is sent, to disallow new
318 * Send BYE to the Dialog.
323 Request byeRequest = SIPDialog.this.createRequest(Request.BYE);
494 * B2BUA NOTE: we may want to send BYE to the Dialog at this
508 sipStack.getStackLogger().logError("ACK Was not sent. Sending BYE");
514 * Send BYE to the Dialog.
518 Request byeRequest = SIPDialog.this.createRequest(Request.BYE);
703 // the dialog, either by sending a BYE or by calling delete() on the dialog
    [all...]
SIPClientTransaction.java     [all...]
SIPTransaction.java 460 * Return a flag that states if this is a BYE transaction.
462 * @return true if the transaciton is a BYE transaction.
465 return getMethod().equals(Request.BYE);
    [all...]
SIPServerTransaction.java     [all...]
  /frameworks/base/voip/java/com/android/server/sip/
SipSessionGroup.java 794 if (isRequestEvent(Request.BYE, evt)) {
795 // terminate the call whenever a BYE is received
    [all...]
SipHelper.java 437 Request byeRequest = dialog.createRequest(Request.BYE);
438 if (DEBUG) Log.d(TAG, "send BYE: " + byeRequest);
  /external/nist-sip/java/gov/nist/javax/sip/
SipStackImpl.java 184 * 32 seconds, then the dialog is torn down and a BYE sent to the peer.</li>
355 * 32 seconds, then the dialog is torn down and a BYE sent to the peer.</li>
671 if (em.equalsIgnoreCase(Request.BYE)
    [all...]
DialogFilter.java 623 } else if (sipRequest.getMethod().equals(Request.BYE)) {
624 // Check for correct sequence numbering of the BYE
628 "Dropping out of sequence BYE " + dialog.getRemoteSeqNumber() + " "
643 // Drop bye's with 481 if dialog does not exist.
645 // there must be a dialog associated with the bye
676 // happens when no dialog for the bye was found.
693 "BYE Tx = " + transaction + " isMapped ="
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPRequest.java 117 putName(Request.BYE);
211 * Check header for constraints. (1) Invite options and bye requests can only have SIP URIs in
    [all...]

Completed in 1306 milliseconds