Searched refs:mCm (Results 1 - 6 of 6) sorted by path

/frameworks/base/wifi/java/android/net/wifi/
H A DWifiStateMachine.java113 private ConnectivityManager mCm; field in class:WifiStateMachine
1243 if (mCm == null) {
1244 mCm = (ConnectivityManager) mContext.getSystemService(Context.CONNECTIVITY_SERVICE);
1254 String[] wifiRegexs = mCm.getTetherableWifiRegexs();
1276 if(mCm.tether(intf) != ConnectivityManager.TETHER_ERROR_NO_ERROR) {
1307 if (mCm.untether(mTetherInterfaceName) != ConnectivityManager.TETHER_ERROR_NO_ERROR) {
1316 String[] wifiRegexs = mCm.getTetherableWifiRegexs();
3504 mCm.requestNetworkTransitionWakelock(TAG);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSMSDispatcher.java148 protected final CommandsInterface mCm; field in class:SMSDispatcher
212 mCm = phone.mCM;
H A DSmsStorageMonitor.java57 final CommandsInterface mCm; // accessed from inner class field in class:SmsStorageMonitor
72 mCm = phone.mCM;
76 mCm.setOnIccSmsFull(this, EVENT_ICC_FULL, null);
77 mCm.registerForOn(this, EVENT_RADIO_ON, null);
88 mCm.unSetOnIccSmsFull(this);
89 mCm.unregisterForOn(this);
121 mCm.reportSmsMemoryStatus(mStorageAvailable,
155 mCm.reportSmsMemoryStatus(false, obtainMessage(EVENT_REPORT_MEMORY_STATUS_DONE));
158 mCm.reportSmsMemoryStatus(true, obtainMessage(EVENT_REPORT_MEMORY_STATUS_DONE));
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaSMSDispatcher.java79 mCm.setOnNewCdmaSms(this, EVENT_NEW_SMS, null);
84 mCm.unSetOnNewCdmaSms(this);
363 mCm.sendCdmaSms(pdu, reply);
375 mCm.acknowledgeLastIncomingCdmaSms(success, causeCode, response);
493 mCm.sendCdmaSms(baos.toByteArray(), null);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmSMSDispatcher.java68 mDataDownloadHandler = new UsimDataDownloadHandler(mCm);
69 mCm.setOnNewGsmSms(this, EVENT_NEW_SMS, null);
70 mCm.setOnSmsStatus(this, EVENT_NEW_SMS_STATUS_REPORT, null);
71 mCm.setOnNewGsmBroadcastSms(this, EVENT_NEW_BROADCAST_SMS, null);
76 mCm.unSetOnNewGsmSms(this);
77 mCm.unSetOnSmsStatus(this);
78 mCm.unSetOnNewGsmBroadcastSms(this);
107 mCm.acknowledgeLastIncomingGsmSms(true, 0, null);
110 mCm.acknowledgeLastIncomingGsmSms(false,
192 mCm
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DUsimDataDownloadTest.java42 mHandler = new UsimDataDownloadHandler(mCm);
59 private UsimDataDownloadCommands mCm; field in class:UsimDataDownloadTest
66 mCm = new UsimDataDownloadCommands(mContext);
114 mCm.expectSendEnvelope(SMS_PP_ENVELOPE_3_1_1, 0x90, 0x00, "");
115 mCm.expectAcknowledgeGsmSms(true, 0);
117 mCm.assertExpectedMethodsCalled();
119 mCm.expectSendEnvelope(SMS_PP_ENVELOPE_3_1_1, 0x90, 0x00, "0123456789");
120 mCm.expectAcknowledgeGsmSmsWithPdu(true, "00077f16050123456789");
122 mCm.assertExpectedMethodsCalled();
124 mCm
[all...]

Completed in 3806 milliseconds