Home
last modified time | relevance | path

Searched refs:longNameRequired (Results 1 – 21 of 21) sorted by relevance

/base/telephony/core_service/services/network_search/include/
Doperator_name.h57 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/
Doperator_name.cpp343 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/
Dgetsimeons_fuzzer.cpp121 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/
Dsim_core_service_test.cpp163 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);
Dsim_test.cpp1331 bool longNameRequired = true; variable
1333 …t = Str16ToStr8(CoreServiceClient::GetInstance().GetSimEons(slotId_, plmn, lac, longNameRequired));
/base/telephony/core_service/services/sim/src/
Dicc_file.cpp207 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()
Dsim_file_manager.cpp195 …::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()
Dsim_manager.cpp701 …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/
Dsim_file_manager.h47 std::u16string GetSimEons(const std::string &plmn, int32_t lac, bool longNameRequired);
Dicc_file.h67 std::string ObtainEons(const std::string &plmn, int32_t lac, bool longNameRequired);
Dsim_manager.h97 …g GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired) override;
/base/telephony/core_service/interfaces/innerkits/include/
Di_sim_manager.h111 …string GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired) = 0;
Dcore_service_client.h299 …:u16string GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired);
Di_core_service.h79 …string GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired) = 0;
Dcore_service_proxy.h59 …g GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired) override;
/base/telephony/core_service/services/core/include/
Dcore_service.h101 …g GetSimEons(int32_t slotId, const std::string &plmn, int32_t lac, bool longNameRequired) override;
/base/telephony/core_service/frameworks/native/src/
Dcore_service_client.cpp391 bool longNameRequired) in GetSimEons() argument
398 return proxy->GetSimEons(slotId, plmn, lac, longNameRequired); in GetSimEons()
Dcore_service_proxy.cpp996 …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/
Dtest.cpp467 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/
Dcore_service.cpp548 …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()
Dcore_service_stub.cpp704 bool longNameRequired = data.ReadBool(); in OnGetSimEons() local
705 std::u16string result = GetSimEons(slotId, plmn, lac, longNameRequired); in OnGetSimEons()