HomeSort by relevance Sort by last modified time
    Searched defs:mTm (Results 1 - 7 of 7) sorted by null

  /packages/apps/Settings/src/com/android/settings/network/
WifiCallingPreferenceController.java 29 private TelephonyManager mTm;
33 mTm = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
39 mContext, ImsManager.getWfcMode(mContext, mTm.isNetworkRoaming())));
MobilePlanPreferenceController.java 66 private TelephonyManager mTm;
75 mTm = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
129 if (mTm.hasIccCard() && (ni != null)) {
133 mTm.getCarrierPackageNamesForIntent(provisioningIntent);
157 String operatorName = mTm.getSimOperatorName();
161 operatorName = mTm.getNetworkOperatorName();
174 } else if (mTm.hasIccCard() == false) {
  /frameworks/base/services/tests/servicestests/src/com/android/server/net/
NetworkStatsAccessTest.java 43 @Mock private TelephonyManager mTm;
58 when(mContext.getSystemService(Context.TELEPHONY_SERVICE)).thenReturn(mTm);
150 when(mTm.checkCarrierPrivilegesForPackage(TEST_PKG)).thenReturn(
  /packages/apps/Stk/src/com/android/stk/
StkMain.java 43 private TelephonyManager mTm = null;
52 mTm = (TelephonyManager) mContext.getSystemService(
78 if (mTm.hasIccCard(i)) {
StkLauncherActivity.java 55 private TelephonyManager mTm = null;
64 mTm = (TelephonyManager) mContext.getSystemService(
178 if (mTm.hasIccCard(i)) {
StkAppService.java 634 TelephonyManager mTm = (TelephonyManager) mContext.getSystemService(
639 if (i != slotId && mTm.hasIccCard(i)) {
    [all...]
  /frameworks/base/services/tests/notification/src/com/android/server/notification/
NotificationComparatorTest.java 55 @Mock TelecomManager mTm;
88 when(mContext.getSystemService(eq(Context.TELECOM_SERVICE))).thenReturn(mTm);
89 when(mTm.getDefaultDialerPackage()).thenReturn(callPkg);

Completed in 77 milliseconds