/external/nist-sip/java/javax/sip/ |
D | Dialog.java | 63 Request createRequest(String method) throws SipException; in createRequest() 64 Request createAck(long cseq) throws InvalidArgumentException, SipException; in createAck() 66 throws DialogDoesNotExistException, SipException; in createPrack() 68 throws InvalidArgumentException, SipException; in createReliableProvisionalResponse() 72 throws TransactionDoesNotExistException, SipException; in sendRequest() 73 void sendAck(Request ackRequest) throws SipException; in sendAck() 75 throws SipException; in sendReliableProvisionalResponse() 79 void terminateOnBye(boolean terminateFlag) throws SipException; in terminateOnBye()
|
D | SipException.java | 3 public class SipException extends Exception { class 4 public SipException() { in SipException() method in SipException 7 public SipException(String message) { in SipException() method in SipException 11 public SipException(String message, Throwable cause) { in SipException() method in SipException
|
D | ClientTransaction.java | 12 Request createAck() throws SipException; in createAck() 14 Request createCancel() throws SipException; in createCancel() 15 void sendRequest() throws SipException; in sendRequest()
|
D | SipProvider.java | 41 Dialog getNewDialog(Transaction transaction) throws SipException; in getNewDialog() 48 void sendRequest(Request request) throws SipException; in sendRequest() 49 void sendResponse(Response response) throws SipException; in sendResponse()
|
D | ServerTransaction.java | 7 throws SipException, InvalidArgumentException; in sendResponse() 9 void enableRetransmissionAlerts() throws SipException; in enableRetransmissionAlerts()
|
D | InvalidArgumentException.java | 3 public class InvalidArgumentException extends SipException {
|
D | DialogDoesNotExistException.java | 3 public class DialogDoesNotExistException extends SipException {
|
D | PeerUnavailableException.java | 3 public class PeerUnavailableException extends SipException {
|
D | ObjectInUseException.java | 3 public class ObjectInUseException extends SipException {
|
D | TransactionAlreadyExistsException.java | 3 public class TransactionAlreadyExistsException extends SipException {
|
D | TransactionDoesNotExistException.java | 3 public class TransactionDoesNotExistException extends SipException {
|
D | ProviderDoesNotExistException.java | 3 public class ProviderDoesNotExistException extends SipException {
|
D | TransactionUnavailableException.java | 3 public class TransactionUnavailableException extends SipException {
|
D | TransportNotSupportedException.java | 3 public class TransportNotSupportedException extends SipException {
|
D | SipStack.java | 38 void start() throws ProviderDoesNotExistException, SipException; in start()
|
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
D | SIPClientTransaction.java | 58 import javax.sip.SipException; 748 } catch (SipException ex) { in inviteClientTransaction() 887 public void sendRequest() throws SipException { in sendRequest() 891 throw new SipException("Request already sent"); in sendRequest() 902 throw new SipException(ex.getMessage()); in sendRequest() 933 throw new SipException("Could not find original tx to cancel. RFC 3261 9.1"); in sendRequest() 935 throw new SipException( in sendRequest() 938 throw new SipException("Cannot cancel non-invite requests RFC 3261 9.1"); in sendRequest() 949 throw new SipException( in sendRequest() 961 throw new SipException ("Failed to take ACK semaphore"); in sendRequest() [all …]
|
D | SIPDialog.java | 86 import javax.sip.SipException; 933 throws SipException { in sendAck() 939 throw new SipException("Bad request method -- should be ACK"); in sendAck() 945 throw new SipException("Bad dialog state " + this.getState()); in sendAck() 955 throw new SipException("Bad call ID in request"); in sendAck() 970 throw new SipException(ex.getMessage()); in sendAck() 976 throw new SipException("No route!"); in sendAck() 983 throw new SipException("No listening point for this provider registered at " in sendAck() 1009 throw new SipException("Could not send ack", ex); in sendAck() 1011 } catch (SipException ex) { in sendAck() [all …]
|
D | SIPServerTransaction.java | 52 import javax.sip.SipException; 1233 public void sendResponse(Response response) throws SipException { in sendResponse() 1243 throw new SipException(ex.getMessage()); in sendResponse() 1248 throw new SipException( in sendResponse() 1260 throw new SipException("Expires header is mandatory in 2xx response of SUBSCRIBE"); in sendResponse() 1270 throw new SipException( in sendResponse() 1281 throw new SipException("Contact Header is mandatory for the OK to the INVITE"); in sendResponse() 1284 throw new SipException("Response does not belong to this transaction."); in sendResponse() 1308 throw new SipException("cannot send response -- unacked povisional"); in sendResponse() 1337 throw new SipException("Tag mismatch dialogTag is " in sendResponse() [all …]
|
D | DefaultRouter.java | 161 public Hop getNextHop(Request request) throws SipException { in getNextHop() 214 throw new SipException("First Route not a SIP URI"); in getNextHop() 340 } catch (SipException ex) { in getNextHops()
|
/external/nist-sip/java/gov/nist/javax/sip/ |
D | SipProviderImpl.java | 66 import javax.sip.SipException; 350 } catch (SipException ex) { in getNewClientTransaction() 665 public void sendRequest(Request request) throws SipException { in sendRequest() 667 throw new SipException("Stack is stopped."); in sendRequest() 684 throw new SipException("could not determine next hop!"); in sendRequest() 689 throw new SipException("Invalid SipRequest -- no via header!"); in sendRequest() 713 throw new SipException( in sendRequest() 722 throw new SipException( in sendRequest() 740 public void sendResponse(Response response) throws SipException { in sendResponse() 742 throw new SipException("Stack is stopped"); in sendResponse() [all …]
|
D | DialogFilter.java | 61 import javax.sip.SipException; 589 } catch (SipException e) { in processRequest() 662 } catch (SipException ex) { in processRequest() 756 } catch (SipException ex) { in processRequest() 1202 } catch (SipException ex) { in processResponse() 1407 } catch (SipException ex) { in processResponse()
|
/external/nist-sip/java/javax/sip/message/ |
D | Message.java | 6 import javax.sip.SipException; 16 void addFirst(Header header) throws SipException, NullPointerException; in addFirst() 18 void addLast(Header header) throws SipException, NullPointerException; in addLast()
|
/external/nist-sip/java/javax/sip/address/ |
D | Router.java | 4 import javax.sip.SipException; 8 Hop getNextHop(Request request) throws SipException; in getNextHop()
|
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/ |
D | AuthenticationHelper.java | 8 import javax.sip.SipException; 57 SipProvider transactionCreator, int cacheTime ) throws SipException, in handleChallenge()
|
D | AuthenticationHelperImpl.java | 35 import javax.sip.SipException; 127 throws SipException, NullPointerException { in handleChallenge() 203 throw new SipException("Invalid CSeq -- could not increment : " in handleChallenge() 244 throw new SipException( in handleChallenge() 271 } catch (SipException ex) { in handleChallenge() 275 throw new SipException("Unexpected exception ", ex); in handleChallenge()
|