OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ImsPhone
(Results
1 - 11
of
11
) sorted by null
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneFactory.java
17
package com.android.internal.telephony.
imsphone
;
31
* Makes a {@link
ImsPhone
} object.
35
* @return the {@code
ImsPhone
} object
37
public static
ImsPhone
makePhone(Context context,
41
return new
ImsPhone
(context, phoneNotifier, defaultPhone);
ImsPhoneMmiCode.java
17
package com.android.internal.telephony.
imsphone
;
166
private
ImsPhone
mPhone;
232
newFromDialString(String dialString,
ImsPhone
phone) {
281
boolean isUssdRequest,
ImsPhone
phone) {
301
ImsPhone
phone) {
448
ImsPhoneMmiCode(
ImsPhone
phone) {
546
static private boolean isShortCode(String dialString,
ImsPhone
phone) {
582
static private boolean isShortCodeUSSD(String dialString,
ImsPhone
phone) {
706
throw new CallStateException(
ImsPhone
.CS_FALLBACK);
777
// via MMI codes, methods have not been added to
ImsPhone
[
all
...]
ImsPhoneCallTracker.java
17
package com.android.internal.telephony.
imsphone
;
161
ImsPhone
mPhone;
184
ImsPhoneCallTracker(
ImsPhone
phone) {
214
// Get the ECBM interface and set
IMSPhone
's listener object for notifications
298
handleEcmTimer(
ImsPhone
.CANCEL_ECM_TIMER);
368
case
ImsPhone
.CANCEL_ECM_TIMER:
370
case
ImsPhone
.RESTART_ECM_TIMER:
643
//***** Called from
ImsPhone
[
all
...]
ImsPhone.java
17
package com.android.internal.telephony.
imsphone
;
93
public class
ImsPhone
extends ImsPhoneBase {
94
private static final String LOG_TAG = "
ImsPhone
";
157
ImsPhone
(Context context, PhoneNotifier notifier, Phone defaultPhone) {
158
super("
ImsPhone
", context, notifier);
892
ImsPhone
.this);
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneBase.java
52
import com.android.internal.telephony.
imsphone
.
ImsPhone
;
202
protected
ImsPhone
mImsPhone = null;
427
ImsPhone
imsPhone
= mImsPhone;
428
if (
imsPhone
!= null) {
429
imsPhone
.unregisterForSilentRedial(this);
430
imsPhone
.dispose();
444
ImsPhone
imsPhone
= mImsPhone
[
all
...]
Phone.java
30
import com.android.internal.telephony.
imsphone
.
ImsPhone
;
[
all
...]
PhoneFactory.java
37
import com.android.internal.telephony.
imsphone
.
ImsPhone
;
38
import com.android.internal.telephony.
imsphone
.ImsPhoneFactory;
508
* Makes a {@link
ImsPhone
} object.
509
* @return the {@code
ImsPhone
} object or null if the exception occured
511
public static
ImsPhone
makeImsPhone(PhoneNotifier phoneNotifier, Phone defaultPhone) {
PhoneProxy.java
40
import com.android.internal.telephony.
imsphone
.
ImsPhone
;
249
ImsPhone
imsPhone
= null;
266
imsPhone
= oldPhone.relinquishOwnershipOfImsPhone();
271
if (
imsPhone
!= null) {
272
mActivePhone.acquireOwnershipOfImsPhone(
imsPhone
);
[
all
...]
CallManager.java
19
import com.android.internal.telephony.
imsphone
.
ImsPhone
;
251
if (phone.getSubId() == subId && !(phone instanceof
ImsPhone
)) {
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GSMPhone.java
74
import com.android.internal.telephony.
imsphone
.
ImsPhone
;
511
ImsPhone
imsPhone
= mImsPhone;
512
if (
imsPhone
!= null &&
imsPhone
.getRingingCall().isRinging() ) {
513
imsPhone
.acceptCall(videoState);
583
ImsPhone
imsPhone
= mImsPhone;
586
} else if (
imsPhone
!= null )
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CDMAPhone.java
67
import com.android.internal.telephony.
imsphone
.
ImsPhone
;
332
ImsPhone
imPhone = mImsPhone;
411
ImsPhone
imsPhone
= mImsPhone;
420
if (imsUseEnabled &&
imsPhone
!= null
421
&& ((
imsPhone
.getServiceState().getState() == ServiceState.STATE_IN_SERVICE
428
return
imsPhone
.dial(dialString, videoState);
431
if (!
ImsPhone
.CS_FALLBACK.equals(e.getMessage())) {
505
ImsPhone
imsPhone = mImsPhone
[
all
...]
Completed in 1499 milliseconds