Home
last modified time | relevance | path

Searched refs:GetISOCountryCodeForSim (Results 1 – 23 of 23) sorted by relevance

/base/telephony/core_service/test/fuzztest/sendterminalresponsecmd_fuzzer/
Dsendterminalresponsecmd_fuzzer.cpp97 void GetISOCountryCodeForSim(const uint8_t *data, size_t size) in GetISOCountryCodeForSim() function
137 GetISOCountryCodeForSim(data, size); in DoSomethingInterestingWithMyAPI()
/base/telephony/cellular_call/services/common/src/
Dmodule_service_utils.cpp69 CoreManagerInner::GetInstance().GetISOCountryCodeForSim(slotId, countryCode); in GetIsoCountryCode()
/base/telephony/core_service/services/sim/include/
Dsim_file_manager.h45 std::u16string GetISOCountryCodeForSim();
Dsim_manager.h95 int32_t GetISOCountryCodeForSim(int32_t slotId, std::u16string &countryCode) override;
/base/telephony/core_service/test/unittest/core_service_gtest/
Dsim_core_service_test.cpp157 EXPECT_NE(mCoreService->GetISOCountryCodeForSim(0, testU16Str), TELEPHONY_ERR_SUCCESS);
315 EXPECT_NE(mCoreService->GetISOCountryCodeForSim(0, testU16Str), TELEPHONY_ERR_SUCCESS);
Dsim_test.cpp243 CoreServiceClient::GetInstance().GetISOCountryCodeForSim(SimTest::slotId_, countryCode);
260 CoreServiceClient::GetInstance().GetISOCountryCodeForSim(SimTest::slotId1_, countryCode);
Dzero_branch_test.cpp265 simFileManager.GetISOCountryCodeForSim();
832 EXPECT_GT(mInner.GetISOCountryCodeForSim(0, result), TELEPHONY_ERR_SUCCESS);
1200 EXPECT_GT(simManager->GetISOCountryCodeForSim(0, testStr), TELEPHONY_ERR_SUCCESS);
1201 EXPECT_GT(simManager->GetISOCountryCodeForSim(INVALID_SLOTID, testStr), TELEPHONY_ERR_SUCCESS);
/base/telephony/core_service/interfaces/innerkits/include/
Di_sim_manager.h88 virtual int32_t GetISOCountryCodeForSim(int32_t slotId, std::u16string &countryCode) = 0;
Dcore_service_client.h195 int32_t GetISOCountryCodeForSim(int32_t slotId, std::u16string &countryCode);
Di_core_service.h67 virtual int32_t GetISOCountryCodeForSim(int32_t slotId, std::u16string &countryCode) = 0;
Dcore_service_proxy.h47 int32_t GetISOCountryCodeForSim(int32_t slotId, std::u16string &countryCode) override;
Dcore_manager_inner.h258 int32_t GetISOCountryCodeForSim(int32_t slotId, std::u16string &countryCode);
/base/location/frameworks/native/source/
Dcountry_code_manager.cpp219 DelayedRefSingleton<Telephony::CoreServiceClient>::GetInstance().GetISOCountryCodeForSim( in GetIsoCountryCode()
/base/telephony/core_service/services/core/include/
Dcore_service.h77 int32_t GetISOCountryCodeForSim(int32_t slotId, std::u16string &countryCode) override;
/base/telephony/core_service/frameworks/native/src/
Dcore_service_client.cpp270 int32_t CoreServiceClient::GetISOCountryCodeForSim(int32_t slotId, std::u16string &countryCode) in GetISOCountryCodeForSim() function in OHOS::Telephony::CoreServiceClient
277 return proxy->GetISOCountryCodeForSim(slotId, countryCode); in GetISOCountryCodeForSim()
Dcore_manager_inner.cpp1915 int32_t CoreManagerInner::GetISOCountryCodeForSim(int32_t slotId, std::u16string &countryCode) in GetISOCountryCodeForSim() function in OHOS::Telephony::CoreManagerInner
1921 return simManager_->GetISOCountryCodeForSim(slotId, countryCode); in GetISOCountryCodeForSim()
Dcore_service_proxy.cpp606 int32_t CoreServiceProxy::GetISOCountryCodeForSim(int32_t slotId, std::u16string &countryCode) in GetISOCountryCodeForSim() function in OHOS::Telephony::CoreServiceProxy
/base/telephony/core_service/services/sim/src/
Dsim_manager.cpp673 int32_t SimManager::GetISOCountryCodeForSim(int32_t slotId, std::u16string &countryCode) in GetISOCountryCodeForSim() function in OHOS::Telephony::SimManager
683 countryCode = simFileManager_[slotId]->GetISOCountryCodeForSim(); in GetISOCountryCodeForSim()
Dsim_file_manager.cpp171 std::u16string SimFileManager::GetISOCountryCodeForSim() in GetISOCountryCodeForSim() function in OHOS::Telephony::SimFileManager
/base/telephony/core_service/services/core/src/
Dcore_service.cpp374 int32_t CoreService::GetISOCountryCodeForSim(int32_t slotId, std::u16string &countryCode) in GetISOCountryCodeForSim() function in OHOS::Telephony::CoreService
382 return simManager_->GetISOCountryCodeForSim(slotId, countryCode); in GetISOCountryCodeForSim()
Dcore_service_stub.cpp479 int32_t result = GetISOCountryCodeForSim(slotId, countryCode); in OnGetISOCountryCodeForSim()
/base/telephony/core_service/frameworks/js/sim/src/
Dnapi_sim.cpp562 … int32_t errorCode = DelayedRefSingleton<CoreServiceClient>::GetInstance().GetISOCountryCodeForSim( in NativeGetIsoForSim()
581 napi_value GetISOCountryCodeForSim(napi_env env, napi_callback_info info) in GetISOCountryCodeForSim() function
608 …DelayedRefSingleton<CoreServiceClient>::GetInstance().GetISOCountryCodeForSim(slotId, countryCode); in GetISOCountryCodeForSimSync()
2922 DECLARE_NAPI_FUNCTION("getISOCountryCodeForSim", GetISOCountryCodeForSim), in InitSimInterface()
/base/telephony/core_service/services/sim/test/
Dtest.cpp394 g_telephonyService->GetISOCountryCodeForSim(testSlot, result); in TestGetISOCountryCodeForSim()