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

1 2 3

  /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/opt/net/voip/src/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 180 private void checkSipServiceConnection() throws SipException {
183 throw new SipException("SipService is dead and is restarting...", new Exception());
195 * @throws SipException if the profile contains incorrect settings or
198 public void open(SipProfile localProfile) throws SipException {
203 throw new SipException("open()", e);
230 * @throws SipException if the profile contains incorrect settings or
238 SipRegistrationListener listener) throws SipException {
249 throw new SipException("open()", e);
260 * @throws SipException if calling the SIP service results in an error
263 SipRegistrationListener listener) throws SipException {
    [all...]
SipAudioCall.java 584 * @throws SipException if the SIP service fails to attach this object to
589 throws SipException {
591 throw new SipException("VOIP API is not supported");
618 * @throws SipException if the SIP service fails to create a session for the
623 int timeout) throws SipException {
626 throw new SipException("VOIP API is not supported");
639 throw new SipException("makeCall()", e);
646 * @throws SipException if the SIP service fails to end the call
648 public void endCall() throws SipException {
669 * @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/opt/net/voip/src/java/com/android/server/sip/
SipHelper.java 44 import javax.sip.SipException;
128 private ListeningPoint getListeningPoint() throws SipException {
136 throw new SipException("no listening point is available");
142 throws ParseException, SipException {
153 throws ParseException, SipException {
159 SipException {
196 String tag) throws SipException {
207 throw new SipException("sendOptions()", e);
212 int expiry) throws SipException {
229 throw new SipException("sendRegister()", e)
    [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 561 milliseconds

1 2 3