Home
last modified time | relevance | path

Searched refs:TelephonyUtils (Results 1 – 25 of 26) sorted by relevance

12

/packages/apps/ImsServiceEntitlement/src/com/android/imsserviceentitlement/
DImsEntitlementReceiver.java44 import com.android.imsserviceentitlement.utils.TelephonyUtils;
77 || !TelephonyUtils.isImsProvisioningRequired(context, currentSubId) in onReceive()
125 TelephonyUtils.getEntitlementVersion(context, currentSubId); in handleCarrierConfigChanged()
168 int entitlementVersion = TelephonyUtils.getEntitlementVersion(context, currentSubId); in isEntitlementVersionSupported()
182 ret.telephonyUtils = new TelephonyUtils(context, subId); in createDependency()
191 public TelephonyUtils telephonyUtils;
DImsEntitlementApi.java40 import com.android.imsserviceentitlement.utils.TelephonyUtils;
78 this.mNeedsImsProvisioning = TelephonyUtils.isImsProvisioningRequired(context, subId); in ImsEntitlementApi()
116 int entitlementVersion = TelephonyUtils.getEntitlementVersion(mContext, mSubId); in checkEntitlementStatus()
157 boolean isDefaultActive = TelephonyUtils.getDefaultStatus(mContext, mSubId); in checkEntitlementStatus()
189 boolean isDefaultActive = TelephonyUtils.getDefaultStatus(mContext, mSubId); in toEntitlementResult()
217 String entitlementServiceUrl = TelephonyUtils.getEntitlementServerUrl(context, mSubId); in getCarrierConfig()
DImsEntitlementPollingService.java51 import com.android.imsserviceentitlement.utils.TelephonyUtils;
150 private final TelephonyUtils mTelephonyUtils;
168 this.mTelephonyUtils = new TelephonyUtils(ImsEntitlementPollingService.this, subId); in EntitlementPollingTask()
171 TelephonyUtils.getEntitlementVersion(ImsEntitlementPollingService.this, mSubid); in EntitlementPollingTask()
172 this.mNeedsImsProvisioning = TelephonyUtils.isImsProvisioningRequired( in EntitlementPollingTask()
DWfcActivationController.java46 import com.android.imsserviceentitlement.utils.TelephonyUtils;
67 private final TelephonyUtils mTelephonyUtils;
86 this.mTelephonyUtils = new TelephonyUtils(context, getSubId()); in WfcActivationController()
102 this.mTelephonyUtils = new TelephonyUtils(context, getSubId()); in WfcActivationController()
/packages/apps/ImsServiceEntitlement/src/com/android/imsserviceentitlement/job/
DJobManager.java31 import com.android.imsserviceentitlement.utils.TelephonyUtils;
111 bundle.putInt(EXTRA_SLOT_ID, TelephonyUtils.getSlotId(mContext, mSubId)); in putSubIdAndRetryExtra()
166 if (!TelephonyUtils.isActivedSubId(context, subId)) { in isValidJob()
173 if (TelephonyUtils.getSlotId(context, subId) != slotId) { in isValidJob()
/packages/apps/ImsServiceEntitlement/src/com/android/imsserviceentitlement/utils/
DTelephonyUtils.java36 public class TelephonyUtils { class
47 public TelephonyUtils(Context context) { in TelephonyUtils() method in TelephonyUtils
51 public TelephonyUtils(Context context, int subId) { in TelephonyUtils() method in TelephonyUtils
206 return !TelephonyUtils.getFcmSenderId(context, subId).isEmpty(); in isFcmPushNotificationSupported()
DMetricsLogger.java28 private final TelephonyUtils mTelephonyUtils;
33 public MetricsLogger(TelephonyUtils telephonyUtils) { in MetricsLogger()
/packages/apps/ImsServiceEntitlement/src/com/android/imsserviceentitlement/fcm/
DFcmService.java25 import com.android.imsserviceentitlement.utils.TelephonyUtils;
127 for (int subId : TelephonyUtils.getSubIdsWithFcmSupported(this)) { in scheduleEntitlementStatusCheckForSubIdAssociatedWithSenderId()
128 String configSenderId = TelephonyUtils.getFcmSenderId(this, subId); in scheduleEntitlementStatusCheckForSubIdAssociatedWithSenderId()
DFcmRegistrationService.java31 import com.android.imsserviceentitlement.utils.TelephonyUtils;
114 for (int subId : TelephonyUtils.getSubIdsWithFcmSupported(this)) { in onHandleWork()
146 TelephonyUtils.getFcmSenderId(this, subId), in getTokenForSubId()
/packages/services/Telephony/src/com/android/phone/euicc/
DEuiccUiDispatcherActivity.java37 import com.android.internal.telephony.util.TelephonyUtils;
213 TelephonyUtils.waitUntilReady(latch, CHANGE_PERMISSION_TIMEOUT_MS); in grantDefaultPermissionsToLuiApp()
234 TelephonyUtils.waitUntilReady(latch, CHANGE_PERMISSION_TIMEOUT_MS); in revokePermissionFromLuiApps()
/packages/apps/Stk/src/com/android/stk/
DStkAppInstaller.java21 import com.android.internal.telephony.util.TelephonyUtils;
36 private static final boolean DBG = TelephonyUtils.IS_DEBUGGABLE;
DStkMenuConfig.java30 import com.android.internal.telephony.util.TelephonyUtils;
41 private static final boolean DBG = TelephonyUtils.IS_DEBUGGABLE;
DStkDialogActivity.java36 import com.android.internal.telephony.util.TelephonyUtils;
330 … CatLog.d(LOG_TAG, "initFromIntent - [" + (TelephonyUtils.IS_DEBUGGABLE ? mTextMsg : "********") in initFromIntent()
/packages/services/Telephony/src/com/android/phone/vvm/
DRemoteVvmTaskManager.java43 import com.android.internal.telephony.util.TelephonyUtils;
173 "Component " + TelephonyUtils.getComponentInfo(info) in getRemotePackage()
188 ComponentInfo componentInfo = TelephonyUtils.getComponentInfo(info); in getRemotePackage()
208 ComponentInfo componentInfo = TelephonyUtils.getComponentInfo(info.get(0)); in getBroadcastPackage()
/packages/apps/Settings/src/com/android/settings/network/telephony/
DConvertToEsimPreferenceController.java47 import com.android.internal.telephony.util.TelephonyUtils;
218 ComponentInfo componentInfo = TelephonyUtils.getComponentInfo(resolveInfo); in isValidEuiccComponent()
/packages/apps/ImsServiceEntitlement/tests/unittests/src/com/android/imsserviceentitlement/
DImsEntitlementReceiverTest.java48 import com.android.imsserviceentitlement.utils.TelephonyUtils;
97 @Mock private TelephonyUtils mMockTelephonyUtils;
DImsEntitlementApiTest.java42 import com.android.imsserviceentitlement.utils.TelephonyUtils;
489 TelephonyUtils.isImsProvisioningRequired(mContext, SUB_ID), in setupImsEntitlementApi()
/packages/services/Telephony/src/com/android/phone/settings/
DRadioInfo.java109 import com.android.internal.telephony.util.TelephonyUtils;
632 if (!TelephonyUtils.IS_DEBUGGABLE) { in onCreate()
643 if (!TelephonyUtils.IS_DEBUGGABLE) { in onCreate()
708 if (!TelephonyUtils.IS_DEBUGGABLE) { in onCreate()
713 if (!TelephonyUtils.IS_DEBUGGABLE) { in onCreate()
746 if (!TelephonyUtils.IS_DEBUGGABLE) { in onCreate()
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/
DCarrierIdProvider.java43 import com.android.internal.telephony.util.TelephonyUtils;
567 if (ota != null && ((TelephonyUtils.IS_DEBUGGABLE && SystemProperties.getBoolean( in getUpdateCarrierList()
DSmsProvider.java53 import com.android.internal.telephony.util.TelephonyUtils;
717 TelephonyUtils.showSwitchToManagedProfileDialogIfAppropriate(getContext(), in insertInner()
877 TelephonyUtils.showSwitchToManagedProfileDialogIfAppropriate(getContext(), in insertInner()
DMmsProvider.java59 import com.android.internal.telephony.util.TelephonyUtils;
461 TelephonyUtils.showSwitchToManagedProfileDialogIfAppropriate(getContext(), subId, in insert()
DMmsSmsProvider.java50 import com.android.internal.telephony.util.TelephonyUtils;
1481 TelephonyUtils.showSwitchToManagedProfileDialogIfAppropriate(getContext(), subId, in insert()
/packages/services/Telephony/src/com/android/phone/
DTelephonyShellCommand.java60 import com.android.internal.telephony.util.TelephonyUtils;
1118 if (Binder.getCallingUid() != Process.ROOT_UID || TelephonyUtils.IS_USER) { in handleEnablePhysicalSubscription()
1691 if (Binder.getCallingUid() != Process.ROOT_UID || TelephonyUtils.IS_USER) { in handleCcCommand()
2247 if (Binder.getCallingUid() != Process.ROOT_UID || TelephonyUtils.IS_USER) { in handleRestartModemCommand()
2261 if (Binder.getCallingUid() != Process.ROOT_UID || TelephonyUtils.IS_USER) { in handleGetImei()
2292 if (Binder.getCallingUid() != Process.ROOT_UID || TelephonyUtils.IS_USER) { in handleUnattendedReboot()
2306 if (Binder.getCallingUid() != Process.ROOT_UID || TelephonyUtils.IS_USER) { in handleGetSimSlotsMapping()
DCarrierConfigLoader.java77 import com.android.internal.telephony.util.TelephonyUtils;
1181 if (TelephonyUtils.IS_DEBUGGABLE) { in getFilePathForLogging()
/packages/services/Telephony/src/com/android/phone/satellite/accesscontrol/
DSatelliteAccessController.java77 import com.android.internal.telephony.util.TelephonyUtils;
579 if (!TelephonyUtils.isValidCountryCode(countryCode)) { in isValidCountryCodes()

12