/frameworks/opt/net/voip/src/java/android/net/sip/ |
D | SipProfile.java | 48 public class SipProfile implements Parcelable, Serializable, Cloneable { class 65 public static final Parcelable.Creator<SipProfile> CREATOR = 66 new Parcelable.Creator<SipProfile>() { 67 public SipProfile createFromParcel(Parcel in) { 68 return new SipProfile(in); 71 public SipProfile[] newArray(int size) { 72 return new SipProfile[size]; 81 private SipProfile mProfile = new SipProfile(); 98 public Builder(SipProfile profile) { in Builder() 101 mProfile = (SipProfile) profile.clone(); in Builder() [all …]
|
D | ISipService.aidl | 22 import android.net.sip.SipProfile; 28 void open(in SipProfile localProfile, String opPackageName); in open() 29 void open3(in SipProfile localProfile, in open3() 38 ISipSession createSession(in SipProfile localProfile, in createSession() 42 SipProfile[] getListOfProfiles(String opPackageName); in getListOfProfiles()
|
D | ISipSession.aidl | 20 import android.net.sip.SipProfile; 40 SipProfile getLocalProfile(); in getLocalProfile() 48 SipProfile getPeerProfile(); in getPeerProfile() 116 void makeCall(in SipProfile callee, String sessionDescription, int timeout); in makeCall()
|
D | SipManager.java | 198 public void open(SipProfile localProfile) throws SipException { in open() 236 public void open(SipProfile localProfile, in open() 347 public SipAudioCall makeAudioCall(SipProfile localProfile, in makeAudioCall() 348 SipProfile peerProfile, SipAudioCall.Listener listener, int timeout) in makeAudioCall() 387 new SipProfile.Builder(localProfileUri).build(), in makeAudioCall() 388 new SipProfile.Builder(peerProfileUri).build(), listener, in makeAudioCall() 505 public void register(SipProfile localProfile, int expiryTime, in register() 532 public void unregister(SipProfile localProfile, in unregister() 585 public SipSession createSipSession(SipProfile localProfile, in createSipSession() 606 public SipProfile[] getListOfProfiles() throws SipException { in getListOfProfiles() [all …]
|
D | SipSession.java | 127 public void onRinging(SipSession session, SipProfile caller, in onRinging() 274 public SipProfile getLocalProfile() { in getLocalProfile() 289 public SipProfile getPeerProfile() { in getPeerProfile() 400 public void makeCall(SipProfile callee, String sessionDescription, in makeCall() 474 public void onRinging(ISipSession session, SipProfile caller, in createListener()
|
D | ISipSessionListener.aidl | 20 import android.net.sip.SipProfile; 41 void onRinging(in ISipSession session, in SipProfile caller, in onRinging()
|
D | SipAudioCall.java | 96 public void onRinging(SipAudioCall call, SipProfile caller) { in onRinging() 174 private SipProfile mLocalProfile; 200 public SipAudioCall(Context context, SipProfile localProfile) { in SipAudioCall() 311 public SipProfile getLocalProfile() { in getLocalProfile() 322 public SipProfile getPeerProfile() { in getPeerProfile() 405 SipProfile peerProfile, String sessionDescription) { in createListener() 622 public void makeCall(SipProfile peerProfile, SipSession sipSession,
|
D | SipProfile.aidl | 19 parcelable SipProfile;
|
D | SipSessionAdapter.java | 28 public void onRinging(ISipSession session, SipProfile caller, in onRinging()
|
/frameworks/opt/net/voip/src/java/com/android/server/sip/ |
D | SipService.java | 32 import android.net.sip.SipProfile; 131 public synchronized SipProfile[] getListOfProfiles(String opPackageName) { in getListOfProfiles() 133 return new SipProfile[0]; in getListOfProfiles() 136 ArrayList<SipProfile> profiles = new ArrayList<SipProfile>(); in getListOfProfiles() 142 return profiles.toArray(new SipProfile[profiles.size()]); in getListOfProfiles() 146 public synchronized void open(SipProfile localProfile, String opPackageName) { in open() 160 public synchronized void open3(SipProfile localProfile, in open3() 189 SipProfile profile = group.getLocalProfile(); in isCallerCreator() 266 public synchronized ISipSession createSession(SipProfile localProfile, in createSession() 307 private SipSessionGroupExt createGroup(SipProfile localProfile) in createGroup() [all …]
|
D | SipHelper.java | 26 import android.net.sip.SipProfile; 94 private FromHeader createFromHeader(SipProfile profile, String tag) in createFromHeader() 99 private ToHeader createToHeader(SipProfile profile) throws ParseException { in createToHeader() 103 private ToHeader createToHeader(SipProfile profile, String tag) in createToHeader() 152 private ContactHeader createContactHeader(SipProfile profile) in createContactHeader() 157 private ContactHeader createContactHeader(SipProfile profile, in createContactHeader() 195 public ClientTransaction sendOptions(SipProfile caller, SipProfile callee, in sendOptions() 211 public ClientTransaction sendRegister(SipProfile userProfile, String tag, in sendRegister() 233 private Request createRequest(String requestType, SipProfile userProfile, in createRequest() 269 private Request createRequest(String requestType, SipProfile caller, in createRequest() [all …]
|
D | SipSessionGroup.java | 34 import android.net.sip.SipProfile; 105 private final SipProfile mLocalProfile; 131 public SipSessionGroup(SipProfile profile, String password, in SipSessionGroup() 227 public SipProfile getLocalProfile() { in getLocalProfile() 537 SipProfile mPeerProfile; 648 public SipProfile getLocalProfile() { in getLocalProfile() 653 public SipProfile getPeerProfile() { in getPeerProfile() 698 public void makeCall(SipProfile peerProfile, String sessionDescription, in makeCall() 1502 public void startKeepAliveProcess(int interval, SipProfile peerProfile, 1705 private static SipProfile createPeerProfile(HeaderAddress header) [all …]
|
D | SipSessionListenerProxy.java | 21 import android.net.sip.SipProfile; 62 public void onRinging(final ISipSession session, final SipProfile caller, in onRinging()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/ |
D | SipPhoneFactory.java | 22 import android.net.sip.SipProfile; 42 SipProfile profile = new SipProfile.Builder(sipUri).build(); in makePhone()
|
D | SipPhone.java | 26 import android.net.sip.SipProfile; 66 private SipProfile mProfile; 70 SipPhone (Context context, PhoneNotifier notifier, SipProfile profile) { in SipPhone() 393 private String getUriString(SipProfile p) { in getUriString() 398 private String getSipDomain(SipProfile p) { in getSipDomain() 504 SipProfile callee = in dial() 505 new SipProfile.Builder(calleeSipUri).build(); in dial() 541 SipProfile callee = sipAudioCall.getPeerProfile(); in initIncomingCall() 749 private SipProfile mPeer; 829 public SipConnection(SipCall owner, SipProfile callee, in SipConnection() [all …]
|
/frameworks/base/docs/html/guide/topics/connectivity/ |
D | sip.jd | 22 <li>{@link android.net.sip.SipProfile}</li> 95 <td>{@link android.net.sip.SipProfile}</td> 100 <td>{@link android.net.sip.SipProfile.Builder}</td> 101 <td>Helper class for creating a SipProfile.</td> 215 represented by a {@link android.net.sip.SipProfile} object.</p> 217 <p>A {@link android.net.sip.SipProfile} defines a SIP profile, including a SIP 222 the local {@link android.net.sip.SipProfile}, this effectively registers the 225 <p>This section shows how to create a {@link android.net.sip.SipProfile}, 228 <p>You create a {@link android.net.sip.SipProfile} object as follows:</p> 230 public SipProfile mSipProfile = null; [all …]
|
/frameworks/base/docs/html/about/versions/ |
D | android-3.1.jd | 587 the new methods {@link android.net.sip.SipProfile#getAuthUserName() 589 android.net.sip.SipProfile.Builder#setAuthUserName(java.lang.String)
|
/frameworks/opt/setupwizard/tools/docs/ |
D | android-22.txt | 17689 ctor public SipAudioCall(android.content.Context, android.net.sip.SipProfile); 17695 method public android.net.sip.SipProfile getLocalProfile(); 17696 method public android.net.sip.SipProfile getPeerProfile(); 17702 …method public void makeCall(android.net.sip.SipProfile, android.net.sip.SipSession, int) throws an… 17722 method public void onRinging(android.net.sip.SipAudioCall, android.net.sip.SipProfile); 17751 …method public android.net.sip.SipSession createSipSession(android.net.sip.SipProfile, android.net.… 17761 …droid.net.sip.SipAudioCall makeAudioCall(android.net.sip.SipProfile, android.net.sip.SipProfile, a… 17764 method public void open(android.net.sip.SipProfile) throws android.net.sip.SipException; 17765 …method public void open(android.net.sip.SipProfile, android.app.PendingIntent, android.net.sip.Sip… 17766 …method public void register(android.net.sip.SipProfile, int, android.net.sip.SipRegistrationListen… [all …]
|
/frameworks/base/api/ |
D | current.txt | 24142 ctor public SipAudioCall(android.content.Context, android.net.sip.SipProfile); 24148 method public android.net.sip.SipProfile getLocalProfile(); 24149 method public android.net.sip.SipProfile getPeerProfile(); 24155 …method public void makeCall(android.net.sip.SipProfile, android.net.sip.SipSession, int) throws an… 24175 method public void onRinging(android.net.sip.SipAudioCall, android.net.sip.SipProfile); 24204 …method public android.net.sip.SipSession createSipSession(android.net.sip.SipProfile, android.net.… 24214 …droid.net.sip.SipAudioCall makeAudioCall(android.net.sip.SipProfile, android.net.sip.SipProfile, a… 24217 method public void open(android.net.sip.SipProfile) throws android.net.sip.SipException; 24218 …method public void open(android.net.sip.SipProfile, android.app.PendingIntent, android.net.sip.Sip… 24219 …method public void register(android.net.sip.SipProfile, int, android.net.sip.SipRegistrationListen… [all …]
|
D | test-current.txt | 24211 ctor public SipAudioCall(android.content.Context, android.net.sip.SipProfile); 24217 method public android.net.sip.SipProfile getLocalProfile(); 24218 method public android.net.sip.SipProfile getPeerProfile(); 24224 …method public void makeCall(android.net.sip.SipProfile, android.net.sip.SipSession, int) throws an… 24244 method public void onRinging(android.net.sip.SipAudioCall, android.net.sip.SipProfile); 24273 …method public android.net.sip.SipSession createSipSession(android.net.sip.SipProfile, android.net.… 24283 …droid.net.sip.SipAudioCall makeAudioCall(android.net.sip.SipProfile, android.net.sip.SipProfile, a… 24286 method public void open(android.net.sip.SipProfile) throws android.net.sip.SipException; 24287 …method public void open(android.net.sip.SipProfile, android.app.PendingIntent, android.net.sip.Sip… 24288 …method public void register(android.net.sip.SipProfile, int, android.net.sip.SipRegistrationListen… [all …]
|
D | system-current.txt | 26164 ctor public SipAudioCall(android.content.Context, android.net.sip.SipProfile); 26170 method public android.net.sip.SipProfile getLocalProfile(); 26171 method public android.net.sip.SipProfile getPeerProfile(); 26177 …method public void makeCall(android.net.sip.SipProfile, android.net.sip.SipSession, int) throws an… 26197 method public void onRinging(android.net.sip.SipAudioCall, android.net.sip.SipProfile); 26226 …method public android.net.sip.SipSession createSipSession(android.net.sip.SipProfile, android.net.… 26236 …droid.net.sip.SipAudioCall makeAudioCall(android.net.sip.SipProfile, android.net.sip.SipProfile, a… 26239 method public void open(android.net.sip.SipProfile) throws android.net.sip.SipException; 26240 …method public void open(android.net.sip.SipProfile, android.app.PendingIntent, android.net.sip.Sip… 26241 …method public void register(android.net.sip.SipProfile, int, android.net.sip.SipRegistrationListen… [all …]
|
/frameworks/base/ |
D | compiled-classes-phone | 2815 android.net.sip.SipProfile 2816 android.net.sip.SipProfile$Builder
|