HomeSort by relevance Sort by last modified time
    Searched refs:BYE (Results 1 - 21 of 21) 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 41 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/chromium_org/third_party/webrtc/test/
rtcp_packet_parser.cc 44 bye_.Set(parser.Packet().BYE);
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
rtcp_utility.cc 837 _packet.BYE.SenderSSRC = *_ptrRTCPData++ << 24;
838 _packet.BYE.SenderSSRC += *_ptrRTCPData++ << 16;
839 _packet.BYE.SenderSSRC += *_ptrRTCPData++ << 8;
840 _packet.BYE.SenderSSRC += *_ptrRTCPData++;
    [all...]
rtcp_utility.h 224 RTCPPacketBYE BYE;
373 State_BYEItem, // BYE item
rtcp_receiver.cc 870 rtcpPacket.BYE.SenderSSRC);
878 _receivedInfoMap.find(rtcpPacket.BYE.SenderSSRC);
885 _receivedCnameMap.find(rtcpPacket.BYE.SenderSSRC);
    [all...]
  /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/opt/net/voip/src/java/com/android/server/sip/
SipSessionGroup.java 820 if (isRequestEvent(Request.BYE, evt)) {
821 // terminate the call whenever a BYE is received
    [all...]
SipHelper.java 435 Request byeRequest = dialog.createRequest(Request.BYE);
436 if (DBG) log("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 707 milliseconds