/base/telephony/core_service/services/network_search/include/ |
D | operator_name.h | 57 std::string GetEons(const std::string &numeric, int32_t lac, bool longNameRequired); 58 …::string GetCustEons(const std::string &numeric, int32_t lac, bool roaming, bool longNameRequired); 59 std::string GetPlmn(const sptr<NetworkState> &networkState, bool longNameRequired);
|
/base/telephony/core_service/services/network_search/src/ |
D | operator_name.cpp | 343 std::string OperatorName::GetPlmn(const sptr<NetworkState> &networkState, bool longNameRequired) in GetPlmn() argument 355 plmn = GetCustEons(numeric, lac, roaming, longNameRequired); in GetPlmn() 358 plmn = GetEons(numeric, lac, longNameRequired); in GetPlmn() 365 numeric.c_str(), longNameRequired, plmn.c_str()); in GetPlmn() 369 std::string OperatorName::GetEons(const std::string &numeric, int32_t lac, bool longNameRequired) in GetEons() argument 375 return Str16ToStr8(simManager_->GetSimEons(slotId_, numeric, lac, longNameRequired)); in GetEons() 399 …atorName::GetCustEons(const std::string &numeric, int32_t lac, bool roaming, bool longNameRequired) in GetCustEons() argument 426 longNameRequired, pnnCust_.at(pnnIndex - 1)->longName.c_str(), in GetCustEons() 428 if (longNameRequired) { in GetCustEons()
|
/base/telephony/core_service/test/fuzztest/getsimeons_fuzzer/ |
D | getsimeons_fuzzer.cpp | 121 bool longNameRequired = static_cast<int32_t>(size % CHOICE_NUM); in GetSimEons() local 127 dataMessageParcel.WriteBool(longNameRequired); in GetSimEons()
|
/base/telephony/core_service/test/unittest/core_service_gtest/ |
D | sim_core_service_test.cpp | 163 bool longNameRequired = true; variable 164 EXPECT_EQ(mCoreService->GetSimEons(0, plmn, lac, longNameRequired), testU16Str); 321 bool longNameRequired = true; variable 322 EXPECT_EQ(mCoreService->GetSimEons(0, plmn, lac, longNameRequired), testU16Str);
|
D | sim_test.cpp | 1331 bool longNameRequired = true; variable 1333 …t = Str16ToStr8(CoreServiceClient::GetInstance().GetSimEons(slotId_, plmn, lac, longNameRequired));
|
/base/telephony/core_service/services/sim/src/ |
D | icc_file.cpp | 207 std::string IccFile::ObtainEons(const std::string &plmn, int32_t lac, bool longNameRequired) in ObtainEons() argument 242 longNameRequired, pnnFiles_.at(pnnIndex - 1)->longName.c_str(), in ObtainEons() 244 if (longNameRequired) { in ObtainEons()
|
D | sim_file_manager.cpp | 195 …::u16string SimFileManager::GetSimEons(const std::string &plmn, int32_t lac, bool longNameRequired) in GetSimEons() argument 202 std::string result = simFile_->ObtainEons(plmn, lac, longNameRequired); in GetSimEons()
|
D | sim_manager.cpp | 701 …SimManager::GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired) in GetSimEons() argument 708 return simFileManager_[slotId]->GetSimEons(plmn, lac, longNameRequired); in GetSimEons()
|
/base/telephony/core_service/services/sim/include/ |
D | sim_file_manager.h | 47 std::u16string GetSimEons(const std::string &plmn, int32_t lac, bool longNameRequired);
|
D | icc_file.h | 67 std::string ObtainEons(const std::string &plmn, int32_t lac, bool longNameRequired);
|
D | sim_manager.h | 97 …g GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired) override;
|
/base/telephony/core_service/interfaces/innerkits/include/ |
D | i_sim_manager.h | 111 …string GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired) = 0;
|
D | core_service_client.h | 299 …:u16string GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired);
|
D | i_core_service.h | 79 …string GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired) = 0;
|
D | core_service_proxy.h | 59 …g GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired) override;
|
/base/telephony/core_service/services/core/include/ |
D | core_service.h | 101 …g GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired) override;
|
/base/telephony/core_service/frameworks/native/src/ |
D | core_service_client.cpp | 391 bool longNameRequired) in GetSimEons() argument 398 return proxy->GetSimEons(slotId, plmn, lac, longNameRequired); in GetSimEons()
|
D | core_service_proxy.cpp | 996 …rviceProxy::GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired) in GetSimEons() argument 1011 data.WriteBool(longNameRequired); in GetSimEons()
|
/base/telephony/core_service/services/sim/test/ |
D | test.cpp | 467 bool longNameRequired = true; in TestGetSimEons() local 469 std::cin >> longNameRequired; in TestGetSimEons() 470 std::u16string result = g_telephonyService->GetSimEons(slotId, plmn, lac, longNameRequired); in TestGetSimEons()
|
/base/telephony/core_service/services/core/src/ |
D | core_service.cpp | 548 …oreService::GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired) in GetSimEons() argument 555 return simManager_->GetSimEons(slotId, plmn, lac, longNameRequired); in GetSimEons()
|
D | core_service_stub.cpp | 704 bool longNameRequired = data.ReadBool(); in OnGetSimEons() local 705 std::u16string result = GetSimEons(slotId, plmn, lac, longNameRequired); in OnGetSimEons()
|