/base/telephony/core_service/services/network_search/include/ |
H A D | operator_name.h | 61 std::string GetEons(const std::string &numeric, int32_t lac, bool longNameRequired); 62 std::string GetCustEons(const std::string &numeric, int32_t lac, bool roaming, bool longNameRequired); 63 std::string GetPlmn(const sptr<NetworkState> &networkState, bool longNameRequired);
|
/base/telephony/core_service/services/network_search/src/ |
H A D | operator_name.cpp | 383 std::string OperatorName::GetPlmn(const sptr<NetworkState> &networkState, bool longNameRequired) in GetPlmn() argument 395 plmn = GetCustEons(numeric, lac, roaming, longNameRequired); in GetPlmn() 398 plmn = GetEons(numeric, lac, longNameRequired); in GetPlmn() 404 "OperatorName::GetPlmn lac:%{public}d, numeric:%{public}s, longNameRequired:%{public}d, plmn:%{public}s", lac, in GetPlmn() 405 numeric.c_str(), longNameRequired, plmn.c_str()); in GetPlmn() 409 std::string OperatorName::GetEons(const std::string &numeric, int32_t lac, bool longNameRequired) in GetEons() argument 415 return Str16ToStr8(simManager_->GetSimEons(slotId_, numeric, lac, longNameRequired)); in GetEons() 456 std::string OperatorName::GetCustEons(const std::string &numeric, int32_t lac, bool roaming, bool longNameRequired) in GetCustEons() argument 482 "OperatorName::GetCustEons longNameRequired:%{public}d, longName:%{public}s, shortName:%{public}s,", in GetCustEons() 483 longNameRequired, pnnCust in GetCustEons() [all...] |
/base/telephony/core_service/test/fuzztest/getsimeons_fuzzer/ |
H A D | getsimeons_fuzzer.cpp | 116 bool longNameRequired = static_cast<int32_t>(*data % CHOICE_NUM); in GetSimEons() local 122 dataMessageParcel.WriteBool(longNameRequired); in GetSimEons()
|
/base/telephony/core_service/test/unittest/core_service_gtest/ |
H A D | sim_core_service_test.cpp | 167 bool longNameRequired = true; in HWTEST_F() local 168 EXPECT_EQ(mCoreService->GetSimEons(0, plmn, lac, longNameRequired), testU16Str); in HWTEST_F() 328 bool longNameRequired = true; in HWTEST_F() local 329 EXPECT_EQ(mCoreService->GetSimEons(0, plmn, lac, longNameRequired), testU16Str); in HWTEST_F()
|
H A D | zero_branch_test_core_service.cpp | 196 bool longNameRequired = true; in HWTEST_F() local 198 DelayedSingleton<CoreService>::GetInstance()->GetSimEons(SLOT_ID, plmn, lac, longNameRequired); in HWTEST_F()
|
H A D | sim_test.cpp | 1342 bool longNameRequired = true; in HWTEST_F() local 1344 result = Str16ToStr8(CoreServiceClient::GetInstance().GetSimEons(slotId_, plmn, lac, longNameRequired)); in HWTEST_F()
|
/base/telephony/core_service/services/sim/src/ |
H A D | icc_file.cpp | 262 std::string IccFile::ObtainEons(const std::string &plmn, int32_t lac, bool longNameRequired) in ObtainEons() argument 296 TELEPHONY_LOGI("ObtainEons longNameRequired:%{public}d, longName:%{public}s, shortName:%{public}s,", in ObtainEons() 297 longNameRequired, pnnFiles_.at(pnnIndex - 1)->longName.c_str(), in ObtainEons() 299 if (longNameRequired) { in ObtainEons()
|
H A D | sim_file_manager.cpp | 257 std::u16string SimFileManager::GetSimEons(const std::string &plmn, int32_t lac, bool longNameRequired) in GetSimEons() argument 264 std::string result = simFile_->ObtainEons(plmn, lac, longNameRequired); in GetSimEons()
|
H A D | sim_manager.cpp | 766 std::u16string SimManager::GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired)
in GetSimEons() argument 773 return simFileManager_[slotId]->GetSimEons(plmn, lac, longNameRequired);
in GetSimEons()
|
/base/telephony/core_service/services/sim/include/ |
H A D | sim_file_manager.h | 52 std::u16string GetSimEons(const std::string &plmn, int32_t lac, bool longNameRequired);
|
H A D | icc_file.h | 72 std::string ObtainEons(const std::string &plmn, int32_t lac, bool longNameRequired);
|
H A D | sim_manager.h | 108 std::u16string GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired) override;
|
/base/telephony/core_service/interfaces/innerkits/include/ |
H A D | core_service_client.h | 330 * @param longNameRequired[in], required long name or not 333 std::u16string GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired);
|
H A D | i_sim_manager.h | 127 virtual std::u16string GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired) = 0;
|
H A D | core_service_proxy.h | 68 std::u16string GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired) override;
|
H A D | i_core_service.h | 95 virtual std::u16string GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired) = 0;
|
/base/telephony/cellular_data/test/mock/ |
H A D | mock_core_service.h | 92 (int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired), (override));
|
/base/telephony/core_service/frameworks/native/src/ |
H A D | core_service_client.cpp | 433 bool longNameRequired) in GetSimEons() 440 return proxy->GetSimEons(slotId, plmn, lac, longNameRequired); in GetSimEons() 432 GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired) GetSimEons() argument
|
H A D | core_service_proxy.cpp | 1110 std::u16string CoreServiceProxy::GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired) in GetSimEons() argument 1125 data.WriteBool(longNameRequired); in GetSimEons()
|
/base/telephony/core_service/services/sim/test/ |
H A D | test.cpp | 468 bool longNameRequired = true; in TestGetSimEons() local 469 std::cout << "please input longNameRequired:" << std::endl; in TestGetSimEons() 470 std::cin >> longNameRequired; in TestGetSimEons() local 471 std::u16string result = g_telephonyService->GetSimEons(slotId, plmn, lac, longNameRequired); in TestGetSimEons()
|
/base/telephony/core_service/services/core/include/ |
H A D | core_service.h | 110 std::u16string GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired) override;
|
/base/telephony/core_service/test/unittest/esim_gtest/mock/include/ |
H A D | esim_core_service_stub_test.h | 248 std::u16string GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired) override
|
/base/telephony/core_service/services/core/src/ |
H A D | core_service.cpp | 616 std::u16string CoreService::GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired) in GetSimEons() argument 623 return simManager_->GetSimEons(slotId, plmn, lac, longNameRequired); in GetSimEons()
|
H A D | core_service_stub.cpp | 1000 bool longNameRequired = data.ReadBool(); in OnGetSimEons() local 1001 std::u16string result = GetSimEons(slotId, plmn, lac, longNameRequired); in OnGetSimEons()
|