Searched refs:SipPhone (Results 1 - 4 of 4) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhoneFactory.java32 * Makes a {@link SipPhone} object.
37 * @return the {@code SipPhone} object or null if the SIP URI is not valid
39 public static SipPhone makePhone(String sipUri, Context context,
43 return new SipPhone(context, phoneNotifier, profile);
H A DSipPhone.java49 public class SipPhone extends SipPhoneBase { class in inherits:SipPhoneBase
50 private static final String LOG_TAG = "SipPhone";
64 SipPhone (Context context, PhoneNotifier notifier, SipProfile profile) { method in class:SipPhone
67 if (DEBUG) Log.d(LOG_TAG, "new SipPhone: " + profile.getUriString());
78 if (!(o instanceof SipPhone)) return false;
79 SipPhone that = (SipPhone) o;
91 public boolean equals(SipPhone phone) {
96 synchronized (SipPhone.class) {
134 synchronized (SipPhone
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhoneFactory.java31 import com.android.internal.telephony.sip.SipPhone;
210 * Makes a {@link SipPhone} object.
212 * @return the {@code SipPhone} object or null if the SIP URI is not valid
214 public static SipPhone makeSipPhone(String sipUri) {
H A DCallManager.java19 import com.android.internal.telephony.sip.SipPhone;
408 if (offhookPhone instanceof SipPhone) {
552 if ((currMode != AudioManager.MODE_IN_CALL) && !(ringingPhone instanceof SipPhone)) {
717 if (fgPhone instanceof SipPhone) {
718 ((SipPhone) fgPhone).conference(heldCall);

Completed in 142 milliseconds