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

1 2

  /external/nist-sip/java/javax/sip/
SipException.java 3 public class SipException extends Exception {
4 public SipException() {
7 public SipException(String message) {
11 public SipException(String message, Throwable cause) {
ServerTransaction.java 7 throws SipException, InvalidArgumentException;
9 void enableRetransmissionAlerts() throws SipException;
ClientTransaction.java 12 Request createAck() throws SipException;
14 Request createCancel() throws SipException;
15 void sendRequest() throws SipException;
Dialog.java 63 Request createRequest(String method) throws SipException;
64 Request createAck(long cseq) throws InvalidArgumentException, SipException;
66 throws DialogDoesNotExistException, SipException;
68 throws InvalidArgumentException, SipException;
72 throws TransactionDoesNotExistException, SipException;
73 void sendAck(Request ackRequest) throws SipException;
75 throws SipException;
79 void terminateOnBye(boolean terminateFlag) throws SipException;
DialogDoesNotExistException.java 3 public class DialogDoesNotExistException extends SipException {
InvalidArgumentException.java 3 public class InvalidArgumentException extends SipException {
ObjectInUseException.java 3 public class ObjectInUseException extends SipException {
PeerUnavailableException.java 3 public class PeerUnavailableException extends SipException {
ProviderDoesNotExistException.java 3 public class ProviderDoesNotExistException extends SipException {
TransactionAlreadyExistsException.java 3 public class TransactionAlreadyExistsException extends SipException {
TransactionDoesNotExistException.java 3 public class TransactionDoesNotExistException extends SipException {
TransactionUnavailableException.java 3 public class TransactionUnavailableException extends SipException {
TransportNotSupportedException.java 3 public class TransportNotSupportedException extends SipException {
SipProvider.java 41 Dialog getNewDialog(Transaction transaction) throws SipException;
48 void sendRequest(Request request) throws SipException;
49 void sendResponse(Response response) throws SipException;
SipStack.java 38 void start() throws ProviderDoesNotExistException, SipException;
  /frameworks/base/voip/java/android/net/sip/
SipException.java 22 public class SipException extends Exception {
23 public SipException() {
26 public SipException(String message) {
30 public SipException(String message, Throwable cause) {
31 // we want to eliminate the dependency on javax.sip.SipException
32 super(message, ((cause instanceof javax.sip.SipException)
SipManager.java 169 * @throws SipException if the profile contains incorrect settings or
172 public void open(SipProfile localProfile) throws SipException {
176 throw new SipException("open()", e);
203 * @throws SipException if the profile contains incorrect settings or
211 SipRegistrationListener listener) throws SipException {
220 throw new SipException("open()", e);
231 * @throws SipException if calling the SIP service results in an error
234 SipRegistrationListener listener) throws SipException {
239 throw new SipException("setRegistrationListener()", e);
248 * @throws SipException if calling the SIP service results in an erro
    [all...]
SipAudioCall.java 521 * @throws SipException if the SIP service fails to attach this object to
526 throws SipException {
528 throw new SipException("VOIP API is not supported");
555 * @throws SipException if the SIP service fails to create a session for the
560 int timeout) throws SipException {
562 throw new SipException("VOIP API is not supported");
574 throw new SipException("makeCall()", e);
581 * @throws SipException if the SIP service fails to end the call
583 public void endCall() throws SipException {
603 * @throws SipException if the SIP service fails to hold the cal
    [all...]
  /external/nist-sip/java/javax/sip/address/
Router.java 4 import javax.sip.SipException;
8 Hop getNextHop(Request request) throws SipException;
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
AuthenticationHelper.java 8 import javax.sip.SipException;
50 * @throws SipException
57 SipProvider transactionCreator, int cacheTime ) throws SipException,
  /frameworks/base/voip/java/com/android/server/sip/
SipHelper.java 39 import javax.sip.SipException;
124 private ListeningPoint getListeningPoint() throws SipException {
132 throw new SipException("no listening point is available");
138 throws ParseException, SipException {
149 throws ParseException, SipException {
179 throws SipException {
188 throw new SipException("sendKeepAlive()", e);
193 int expiry) throws SipException {
210 throw new SipException("sendRegister()", e);
215 String tag) throws ParseException, SipException {
    [all...]
  /external/nist-sip/java/javax/sip/message/
Message.java 6 import javax.sip.SipException;
16 void addFirst(Header header) throws SipException, NullPointerException;
18 void addLast(Header header) throws SipException, NullPointerException;
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPClientTransaction.java 58 import javax.sip.SipException;
    [all...]
SIPServerTransaction.java 52 import javax.sip.SipException;
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/
SipProviderImpl.java 66 import javax.sip.SipException;
350 } catch (SipException ex) {
665 public void sendRequest(Request request) throws SipException {
667 throw new SipException("Stack is stopped.");
684 throw new SipException("could not determine next hop!");
689 throw new SipException("Invalid SipRequest -- no via header!");
713 throw new SipException(
722 throw new SipException(
740 public void sendResponse(Response response) throws SipException {
742 throw new SipException("Stack is stopped")
    [all...]

Completed in 116 milliseconds

1 2