OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SipPhone
(Results
1 - 6
of
6
) sorted by null
/frameworks/opt/telephony/src/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
49
public class
SipPhone
extends SipPhoneBase {
50
private static final String LOG_TAG = "
SipPhone
";
65
SipPhone
(Context context, PhoneNotifier notifier, SipProfile profile) {
68
if (DBG) log("new
SipPhone
: " + profile.getUriString());
79
if (!(o instanceof
SipPhone
)) return false;
80
SipPhone
that = (
SipPhone
) o;
88
public boolean equals(
SipPhone
phone) {
96
synchronized (
SipPhone
.class) {
147
synchronized (
SipPhone
.class)
[
all
...]
/packages/services/Telephony/src/com/android/phone/
SipBroadcastReceiver.java
23
import com.android.internal.telephony.sip.
SipPhone
;
59
SipPhone
phone = PhoneFactory.makeSipPhone(localSipUri);
82
if (((
SipPhone
) phone).getSipUri().equals(sipUri)) {
98
if (((
SipPhone
) phone).canTake(sipAudioCall)) {
PhoneUtils.java
61
import com.android.internal.telephony.sip.
SipPhone
;
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneFactory.java
31
import com.android.internal.telephony.sip.
SipPhone
;
197
* Makes a {@link
SipPhone
} object.
199
* @return the {@code
SipPhone
} object or null if the SIP URI is not valid
201
public static
SipPhone
makeSipPhone(String sipUri) {
CallManager.java
19
import com.android.internal.telephony.sip.
SipPhone
;
408
if (offhookPhone instanceof
SipPhone
) {
409
// enable IN_COMMUNICATION audio mode instead for
sipPhone
552
if ((currMode != AudioManager.MODE_IN_CALL) && !(ringingPhone instanceof
SipPhone
)) {
717
if (fgPhone instanceof
SipPhone
) {
718
((
SipPhone
) fgPhone).conference(heldCall);
[
all
...]
Completed in 3347 milliseconds