OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mTm
(Results
1 - 6
of
6
) sorted by null
/packages/apps/Settings/src/com/android/settings/network/
MobilePlanPreferenceController.java
68
private TelephonyManager
mTm
;
77
mTm
= (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
131
if (
mTm
.hasIccCard() && (ni != null)) {
135
mTm
.getCarrierPackageNamesForIntent(provisioningIntent);
159
String operatorName =
mTm
.getSimOperatorName();
163
operatorName =
mTm
.getNetworkOperatorName();
176
} else if (
mTm
.hasIccCard() == false) {
/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
54
private TelephonyManager
mTm
= null;
63
mTm
= (TelephonyManager) mContext.getSystemService(
180
if (
mTm
.hasIccCard(i)) {
StkAppService.java
727
TelephonyManager
mTm
= (TelephonyManager) mContext.getSystemService(
732
if (i != slotId &&
mTm
.hasIccCard(i)) {
[
all
...]
/frameworks/base/tests/net/java/com/android/server/net/
NetworkStatsAccessTest.java
50
@Mock private TelephonyManager
mTm
;
64
when(mContext.getSystemService(Context.TELEPHONY_SERVICE)).thenReturn(
mTm
);
163
when(
mTm
.checkCarrierPrivilegesForPackage(TEST_PKG)).thenReturn(
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
NotificationComparatorTest.java
57
@Mock TelecomManager
mTm
;
92
when(mContext.getSystemService(eq(Context.TELECOM_SERVICE))).thenReturn(
mTm
);
93
when(
mTm
.getDefaultDialerPackage()).thenReturn(callPkg);
Completed in 209 milliseconds