Home
last modified time | relevance | path

Searched refs:GetSimIccId (Results 1 - 25 of 36) sorted by relevance

12

/base/telephony/core_service/test/fuzztest/setshowname_fuzzer/
H A Dsetshowname_fuzzer.cpp79 void GetSimIccId(const uint8_t *data, size_t size) in GetSimIccId() function
147 GetSimIccId(data, size); in DoSomethingInterestingWithMyAPI()
/base/customization/enterprise_device_management/services/edm_plugin/src/
H A Dget_device_info_plugin.cpp161 int32_t iccIdRet = telephonyService.GetSimIccId(slotId, iccId); in GetSimInfoBySlotId()
/base/telephony/core_service/services/sim/src/
H A Doperator_config_cache.cpp100 std::string iccid = Str16ToStr8(simFileManager->GetSimIccId()); in LoadOperatorConfig()
335 std::string iccid = Str16ToStr8(simFileManager->GetSimIccId()); in IsNeedOperatorLoad()
H A Dmulti_sim_controller.cpp256 std::string newIccId = Str16ToStr8(simFileManager_[slotId]->GetSimIccId()); in InitIccId()
597 std::string iccIdSub1 = Str16ToStr8(simFileManager_[SIM_SLOT_0]->GetSimIccId()); in getDefaultMainSlotByIccId()
598 std::string iccIdSub2 = Str16ToStr8(simFileManager_[SIM_SLOT_1]->GetSimIccId()); in getDefaultMainSlotByIccId()
950 std::string iccId = Str16ToStr8(simFileManager_[slotId]->GetSimIccId()); in SavePrimarySlotIdInfo()
H A Dsim_manager.cpp776 int32_t SimManager::GetSimIccId(int32_t slotId, std::u16string &iccId) in GetSimIccId() function in OHOS::Telephony::SimManager
779 TELEPHONY_LOGE("GetSimIccId has no sim card!"); in GetSimIccId()
786 iccId = simFileManager_[slotId]->GetSimIccId(); in GetSimIccId()
/base/telephony/cellular_data/test/
H A Dcellular_data_handler_branch_test.cpp412 EXPECT_CALL(*mockSimManager, GetSimIccId(_, _)).WillOnce(DoAll(SetArgReferee<1>(iccId), Return(0))); in HWTEST_F()
418 EXPECT_CALL(*mockSimManager, GetSimIccId(_, _)).WillOnce(DoAll(SetArgReferee<1>(iccId), Return(0))); in HWTEST_F()
445 EXPECT_CALL(*mockSimManager, GetSimIccId(_, _)).WillOnce(DoAll(SetArgReferee<1>(iccId), Return(0))); in HWTEST_F()
/base/telephony/cellular_data/services/src/apn_manager/
H A Dapn_manager.cpp285 CoreManagerInner::GetInstance().GetSimIccId(slotId, tempIccId); in GetCTOperator()
332 CoreManagerInner::GetInstance().GetSimIccId(slotId, iccId); in CreateMvnoApnItems()
/base/telephony/core_service/test/unittest/core_service_gtest/
H A Dsim_core_service_test.cpp55 EXPECT_NE(mCoreService->GetSimIccId(0, testU16Str), TELEPHONY_ERR_SUCCESS); in HWTEST_F()
202 EXPECT_NE(mCoreService->GetSimIccId(0, testU16Str), TELEPHONY_ERR_SUCCESS); in HWTEST_F()
H A Dsim_file_manager_branch_test.cpp152 EXPECT_EQ(simFileManager.GetSimIccId(), u""); in HWTEST_F()
H A Dsim_elementary_file_test.cpp84 CoreServiceClient::GetInstance().GetSimIccId(SimTest::slotId_, iccId); in HWTEST_F()
102 CoreServiceClient::GetInstance().GetSimIccId(SimTest::slotId1_, iccId); in HWTEST_F()
119 CoreServiceClient::GetInstance().GetSimIccId(SimTest::slotId_, iccId); in HWTEST_F()
H A Dcore_service_test.cpp185 auto result = DelayedSingleton<CoreService>::GetInstance()->GetSimIccId(0, iccId); in HWTEST_F()
H A Dsim_test_util.cpp110 CoreServiceClient::GetInstance().GetSimIccId(slotId, result); in ParseOperatorConf()
/base/telephony/core_service/services/sim/include/
H A Dsim_file_manager.h53 std::u16string GetSimIccId();
H A Dsim_manager.h109 int32_t GetSimIccId(int32_t slotId, std::u16string &iccId) override;
/base/telephony/cellular_data/test/mock/
H A Dmock_sim_manager.h76 MOCK_METHOD2(GetSimIccId, int32_t(int32_t, std::u16string &));
H A Dmock_core_service.h78 MOCK_METHOD(int32_t, GetSimIccId, (int32_t slotId, std::u16string &iccId), (override));
/base/telephony/core_service/interfaces/innerkits/include/
H A Dcore_service_client.h238 int32_t GetSimIccId(int32_t slotId, std::u16string &iccId);
H A Di_sim_manager.h106 virtual int32_t GetSimIccId(int32_t slotId, std::u16string &iccId) = 0;
H A Dcore_service_proxy.h56 int32_t GetSimIccId(int32_t slotId, std::u16string &iccId) override;
H A Di_core_service.h84 virtual int32_t GetSimIccId(int32_t slotId, std::u16string &iccId) = 0;
H A Dcore_manager_inner.h272 int32_t GetSimIccId(int32_t slotId, std::u16string &iccId);
/base/telephony/core_service/frameworks/native/src/
H A Dcore_service_client.cpp322 int32_t CoreServiceClient::GetSimIccId(int32_t slotId, std::u16string &iccId) in GetSimIccId() function in OHOS::Telephony::CoreServiceClient
329 return proxy->GetSimIccId(slotId, iccId); in GetSimIccId()
/base/telephony/core_service/services/core/include/
H A Dcore_service.h88 int32_t GetSimIccId(int32_t slotId, std::u16string &iccId) override;
/base/telephony/core_service/test/unittest/esim_gtest/mock/include/
H A Desim_core_service_stub_test.h193 int32_t GetSimIccId(int32_t slotId, std::u16string &iccId) override
/base/telephony/core_service/services/core/src/
H A Dcore_service.cpp449 int32_t CoreService::GetSimIccId(int32_t slotId, std::u16string &iccId) in GetSimIccId() function in OHOS::Telephony::CoreService
459 TELEPHONY_LOGD("CoreService::GetSimIccId(), slotId = %{public}d", slotId); in GetSimIccId()
464 return simManager_->GetSimIccId(slotId, iccId); in GetSimIccId()

Completed in 29 milliseconds

12