/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 | 176 * @throws SipException if the profile contains incorrect settings or 179 public void open(SipProfile localProfile) throws SipException { 183 throw new SipException("open()", e); 210 * @throws SipException if the profile contains incorrect settings or 218 SipRegistrationListener listener) throws SipException { 227 throw new SipException("open()", e); 238 * @throws SipException if calling the SIP service results in an error 241 SipRegistrationListener listener) throws SipException { 246 throw new SipException("setRegistrationListener()", e); 255 * @throws SipException if calling the SIP service results in an erro [all...] |
SipAudioCall.java | 590 * @throws SipException if the SIP service fails to attach this object to 595 throws SipException { 597 throw new SipException("VOIP API is not supported"); 624 * @throws SipException if the SIP service fails to create a session for the 629 int timeout) throws SipException { 631 throw new SipException("VOIP API is not supported"); 643 throw new SipException("makeCall()", e); 650 * @throws SipException if the SIP service fails to end the call 652 public void endCall() throws SipException { 672 * @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 | 44 import javax.sip.SipException; 130 private ListeningPoint getListeningPoint() throws SipException { 138 throw new SipException("no listening point is available"); 144 throws ParseException, SipException { 155 throws ParseException, SipException { 161 SipException { 198 String tag) throws SipException { 209 throw new SipException("sendOptions()", e); 214 int expiry) throws SipException { 231 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...] |