HomeSort by relevance Sort by last modified time
    Searched refs:SipPhone (Results 1 - 6 of 6) sorted by null

  /frameworks/base/telephony/java/com/android/internal/telephony/sip/
SipPhoneFactory.java 32 * 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);
SipPhone.java 48 public class SipPhone extends SipPhoneBase {
49 private static final String LOG_TAG = "SipPhone";
63 SipPhone (Context context, PhoneNotifier notifier, SipProfile profile) {
66 if (DEBUG) Log.d(LOG_TAG, "new SipPhone: " + profile.getUriString());
77 if (!(o instanceof SipPhone)) return false;
78 SipPhone that = (SipPhone) o;
90 public boolean equals(SipPhone phone) {
95 synchronized (SipPhone.class) {
133 synchronized (SipPhone.class)
    [all...]
  /packages/apps/Phone/src/com/android/phone/
SipBroadcastReceiver.java 22 import com.android.internal.telephony.sip.SipPhone;
60 SipPhone phone = PhoneFactory.makeSipPhone(localSipUri);
83 if (((SipPhone) phone).getSipUri().equals(sipUri)) {
84 CallManager.getInstance().unregisterPhone((SipPhone)phone);
99 if (((SipPhone) phone).canTake(sipAudioCall)) return;
PhoneUtils.java 61 import com.android.internal.telephony.sip.SipPhone;
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
PhoneFactory.java 29 import com.android.internal.telephony.sip.SipPhone;
240 * Makes a {@link SipPhone} object.
242 * @return the {@code SipPhone} object or null if the SIP URI is not valid
244 public static SipPhone makeSipPhone(String sipUri) {
CallManager.java 19 import com.android.internal.telephony.sip.SipPhone;
389 if (offhookPhone instanceof SipPhone) {
390 // enable IN_COMMUNICATION audio mode for sipPhone
670 if (fgPhone instanceof SipPhone) {
671 ((SipPhone) fgPhone).conference(heldCall);
    [all...]

Completed in 51 milliseconds