HomeSort by relevance Sort by last modified time
    Searched refs:mccmnc (Results 1 - 23 of 23) sorted by null

  /system/connectivity/shill/mobile_operator_db/
serviceproviders.prototxt 33 mccmnc : "42402"
65 mccmnc : "42403"
81 mccmnc : "41201"
99 mccmnc : "27602"
125 mccmnc : "28301"
143 mccmnc : "28304"
162 mccmnc : "28310"
188 mccmnc : "28305"
232 mccmnc : "63102"
248 mccmnc : "722340
    [all...]
serviceproviders_converter.py 72 # Turns out some MVNOs are MNOs using a different MCCMNC.
285 Ensure that no two mcc, mnc pairs concat to the same MCCMNC.
291 mccmnc = mcc + mnc
292 if mccmnc in self._mcc_mnc_by_mccmnc:
293 old_mcc, old_mnc = self._mcc_mnc_by_mccmnc(mccmnc)
295 self._LogAndRaise(u'Ambiguous MCCMNC pairs detected: '
299 self._mcc_mnc_by_mccmnc[u'mccmnc'] = (mcc, mnc)
303 """ Map all GSM nodes with same MCCMNC together. """
307 logging.warning('Found a GSM node with no MCCMNC. ')
315 mccmnc = mcc + mn
    [all...]
  /system/connectivity/shill/cellular/
mock_mobile_operator_info.cc 30 ON_CALL(*this, mccmnc()).WillByDefault(ReturnRef(empty_mccmnc_));
mobile_operator_info.cc 112 const string& MobileOperatorInfo::mccmnc() const { function in class:shill::MobileOperatorInfo
113 const auto& result = impl_->mccmnc();
134 for (const auto& mccmnc : result) {
135 pp_result << mccmnc << " "; local
230 void MobileOperatorInfo::UpdateMCCMNC(const string& mccmnc) {
231 SLOG(this, 3) << GetLogPrefix(__func__) << "(" << mccmnc << ")";
232 impl_->UpdateMCCMNC(mccmnc);
mobile_operator_info_impl.cc 181 const string& MobileOperatorInfoImpl::mccmnc() const { function in class:shill::MobileOperatorInfoImpl
237 LOG(WARNING) << "MCCMNC [" << user_mccmnc_ << "] is not a substring of "
241 // Attempt to determine the MNO from IMSI since MCCMNC is absent.
271 void MobileOperatorInfoImpl::UpdateMCCMNC(const string& mccmnc) {
272 if (user_mccmnc_ == mccmnc) {
276 user_mccmnc_ = mccmnc;
279 AppendToCandidatesByMCCMNC(mccmnc);
282 // lost some candidates due to an incorrect MCCMNC.
414 const RepeatedPtrField<string>& mccmncs = data.mccmnc();
415 for (const auto& mccmnc : mccmncs)
    [all...]
mobile_operator_info.h 165 virtual const std::string& mccmnc() const;
205 // Both MCCMNC and SID correspond to operator code in the different
207 // after MCCMNC (or vice-versa), ensure a call to |Reset| to clear state.
208 virtual void UpdateMCCMNC(const std::string& mccmnc);
mock_mobile_operator_info.h 39 MOCK_CONST_METHOD0(mccmnc, const std::string&());
mobile_operator_info_impl.h 61 const std::string& mccmnc() const;
75 void UpdateMCCMNC(const std::string& mccmnc);
90 // MCCMNC can be of length 5 or 6. When using this constant, keep in mind that
91 // the length of MCCMNC can by |kMCCMNCMinLen| or |kMCCMNCMinLen + 1|.
121 // Append candidates recognized by |mccmnc| to the candidate list.
122 bool AppendToCandidatesByMCCMNC(const std::string& mccmnc);
175 // |candidates_by_operator_code| can be determined either using MCCMNC or
mobile_operator_info_unittest.cc 269 void UpdateMCCMNC(const std::string& mccmnc) {
270 operator_info_->UpdateMCCMNC(mccmnc);
329 EXPECT_TRUE(operator_info_->mccmnc().empty());
343 // match by: MCCMNC.
363 // message: Has an MNO with no MCCMNC.
373 // message: Two messages with the same MCCMNC.
468 // match by: MCCMNC finds two candidates (first one is chosen), Name narrows
471 // This is merely a MCCMNC update.
492 // match by: OperatorName finds two (first one is chosen), MCCMNC narrows down
516 // match by: First MCCMNC finds one. Then, OperatorName matches another
    [all...]
cellular.cc     [all...]
cellular_unittest.cc     [all...]
  /cts/tests/tests/telephony/src/android/telephony/cts/
SmsManagerTest.java 239 String mccmnc = mTelephonyManager.getSimOperator(); local
240 mDeliveryReportSupported = !(NO_DELIVERY_REPORTS.contains(mccmnc));
299 String mccmnc = mTelephonyManager.getSimOperator(); local
324 if (sendDataMessageIfSupported(mccmnc)) {
340 int numPartsSent = sendMultipartTextMessageIfSupported(mccmnc);
365 String mccmnc = mTelephonyManager.getSimOperator(); local
382 if (!sendDataMessageIfSupported(mccmnc)) {
397 int numPartsSent = sendMultipartTextMessageIfSupported(mccmnc);
455 private int sendMultipartTextMessageIfSupported(String mccmnc) {
457 if (!UNSUPPORT_MULTIPART_SMS_MESSAGES.contains(mccmnc)) {
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/util/
PhoneUtils.java 132 * @return the text of mccmnc string
300 final String mccmnc = mTelephonyManager.getSimOperator(); local
304 mcc = Integer.parseInt(mccmnc.substring(0, 3));
305 mnc = Integer.parseInt(mccmnc.substring(3));
307 LogUtil.w(TAG, "PhoneUtils.getMccMnc: invalid string " + mccmnc, e);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
MccTable.java 154 * @param mccmnc truncated imsi with just the MCC and MNC - MNC assumed to be from 4th to end
157 public static void updateMccMncConfiguration(Context context, String mccmnc,
159 Slog.d(LOG_TAG, "updateMccMncConfiguration mccmnc='" + mccmnc + "' fromServiceState=" + fromServiceState);
164 mccmnc = overrideMcc;
165 Slog.d(LOG_TAG, "updateMccMncConfiguration overriding mccmnc='" + mccmnc + "'");
169 if (!TextUtils.isEmpty(mccmnc)) {
174 //Update mccmnc only for default subscription in case of MultiSim.
175 // if (!defaultMccMnc.equals(mccmnc)) {
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/debug/
DebugMmsConfigFragment.java 65 final int[] mccmnc = PhoneUtils.get(subIdArray[position]).getMccMnc();
68 title.setText("(" + mccmnc[0] + "/" + mccmnc[1] + ") " +
  /hardware/qcom/audio/hal/msm8974/
platform.c 86 char *mccmnc; member in struct:operator_info
510 int mccmnc; local
512 mccmnc = atoi(value);
513 ALOGD("%s: tmus mccmnc %d", __func__, mccmnc);
514 switch(mccmnc) {
547 char mccmnc[PROPERTY_VALUE_MAX]; local
550 property_get("gsm.sim.operator.numeric",mccmnc,"0");
554 if (strstr(info_item->mccmnc, mccmnc) != NULL)
    [all...]
  /packages/apps/Settings/src/com/android/settings/
ApnSettings.java 243 final String mccmnc = mSubscriptionInfo == null ? "" local
245 Log.d(TAG, "mccmnc = " + mccmnc);
246 StringBuilder where = new StringBuilder("numeric=\"" + mccmnc +
  /hardware/qcom/audio/hal/msm8960/
platform.c 221 int mccmnc; local
223 mccmnc = atoi(value);
224 ALOGD("%s: tmus mccmnc %d", __func__, mccmnc);
225 switch(mccmnc) {
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
SIMRecords.java 680 for (String mccmnc : MCCMNC_CODES_HAVING_3DIGITS_MNC) {
681 if (mccmnc.equals(mccmncCode)) {
703 log("update mccmnc=" + mImsi.substring(0, 3 + mMncLength));
    [all...]
  /hardware/qcom/audio/legacy/alsa_sound/
alsa_default.cpp 87 static int mccmnc; member in namespace:android_audio_legacy
    [all...]
  /external/robolectric/v3/runtime/
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 
android-all-4.4_r1-robolectric-1.jar 

Completed in 466 milliseconds