Home
last modified time | relevance | path

Searched refs:longNameRequired (Results 1 - 24 of 24) sorted by relevance

/base/telephony/core_service/services/network_search/include/
H A Doperator_name.h61 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 Doperator_name.cpp383 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 Dgetsimeons_fuzzer.cpp116 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 Dsim_core_service_test.cpp167 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 Dzero_branch_test_core_service.cpp196 bool longNameRequired = true; in HWTEST_F() local
198 DelayedSingleton<CoreService>::GetInstance()->GetSimEons(SLOT_ID, plmn, lac, longNameRequired); in HWTEST_F()
H A Dsim_test.cpp1342 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 Dicc_file.cpp262 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 Dsim_file_manager.cpp257 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 Dsim_manager.cpp766 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 Dsim_file_manager.h52 std::u16string GetSimEons(const std::string &plmn, int32_t lac, bool longNameRequired);
H A Dicc_file.h72 std::string ObtainEons(const std::string &plmn, int32_t lac, bool longNameRequired);
H A Dsim_manager.h108 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 Dcore_service_client.h330 * @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 Di_sim_manager.h127 virtual std::u16string GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired) = 0;
H A Dcore_service_proxy.h68 std::u16string GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired) override;
H A Di_core_service.h95 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 Dmock_core_service.h92 (int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired), (override));
/base/telephony/core_service/frameworks/native/src/
H A Dcore_service_client.cpp433 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 Dcore_service_proxy.cpp1110 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 Dtest.cpp468 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 Dcore_service.h110 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 Desim_core_service_stub_test.h248 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 Dcore_service.cpp616 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 Dcore_service_stub.cpp1000 bool longNameRequired = data.ReadBool(); in OnGetSimEons() local
1001 std::u16string result = GetSimEons(slotId, plmn, lac, longNameRequired); in OnGetSimEons()

Completed in 40 milliseconds