Home
last modified time | relevance | path

Searched refs:GetSimAccountInfo (Results 1 - 25 of 28) sorted by relevance

12

/base/telephony/cellular_data/services/src/utils/
H A Dnet_manager_tactics_call_back.cpp39 if (coreInner.GetSimAccountInfo(i, accountInfo) != TELEPHONY_ERR_SUCCESS) { in NetStrategySwitch()
/base/telephony/core_service/test/fuzztest/addiccdiallingnumbers_fuzzer/
H A Daddiccdiallingnumbers_fuzzer.cpp105 void GetSimAccountInfo(const uint8_t *data, size_t size) in GetSimAccountInfo() function
221 GetSimAccountInfo(data, size); in DoSomethingInterestingWithMyAPI()
/base/telephony/core_service/services/sim/include/
H A Dmulti_sim_controller.h48 int32_t GetSimAccountInfo(int32_t slotId, bool denied, IccAccountInfo &info);
H A Dsim_manager.h70 int32_t GetSimAccountInfo(int32_t slotId, bool denied, IccAccountInfo &info) override;
/base/telephony/core_service/test/unittest/core_service_gtest/
H A Dsim_core_service_test.cpp73 EXPECT_NE(mCoreService->GetSimAccountInfo(0, mIccAccountInfo), TELEPHONY_ERR_SUCCESS); in HWTEST_F()
220 EXPECT_NE(mCoreService->GetSimAccountInfo(0, mIccAccountInfo), TELEPHONY_ERR_SUCCESS); in HWTEST_F()
H A Dsim_elementary_file_test.cpp678 int32_t result = CoreServiceClient::GetInstance().GetSimAccountInfo(SimTest::slotId_, info); in HWTEST_F()
708 int32_t result = CoreServiceClient::GetInstance().GetSimAccountInfo(SimTest::slotId1_, info); in HWTEST_F()
724 int32_t result = CoreServiceClient::GetInstance().GetSimAccountInfo(SimTest::slotId_, info); in HWTEST_F()
H A Dcore_service_native_branch_test.cpp179 EXPECT_EQ(coreServiceProxy.GetSimAccountInfo(INVALID_SLOTID, info), TELEPHONY_ERR_SLOTID_INVALID); in HWTEST_F()
423 EXPECT_EQ(mInner.GetSimAccountInfo(-1, info), TELEPHONY_ERR_LOCAL_PTR_NULL); in HWTEST_F()
H A Dzero_branch_test_core_service.cpp200 result = DelayedSingleton<CoreService>::GetInstance()->GetSimAccountInfo(SLOT_ID, info); in HWTEST_F()
H A Dzero_branch_test.cpp1134 EXPECT_GT(mInner.GetSimAccountInfo(0, mIccAccountInfo), TELEPHONY_ERR_SUCCESS); in HWTEST_F()
1380 EXPECT_NE(multiSimController->GetSimAccountInfo(0, false, mIccAccountInfo), TELEPHONY_ERR_SUCCESS); in HWTEST_F()
1640 EXPECT_GT(simManager->GetSimAccountInfo(0, false, mIccAccountInfo), TELEPHONY_ERR_SUCCESS); in HWTEST_F()
1641 EXPECT_GT(simManager->GetSimAccountInfo(INVALID_SLOTID, false, mIccAccountInfo), TELEPHONY_ERR_SUCCESS); in HWTEST_F()
/base/telephony/core_service/frameworks/cj/telephony_sim/src/
H A Dtelephony_sim_impl.cpp268 DelayedRefSingleton<CoreServiceClient>::GetInstance().GetSimAccountInfo(slotId, operInfo); in getSimAccountInfo()
/base/telephony/cellular_data/test/mock/
H A Dmock_sim_manager.h98 MOCK_METHOD3(GetSimAccountInfo, int32_t(int32_t, bool, IccAccountInfo &));
H A Dmock_core_service.h98 MOCK_METHOD(int32_t, GetSimAccountInfo, (int32_t slotId, IccAccountInfo &info), (override));
/base/telephony/core_service/interfaces/innerkits/include/
H A Dcore_service_client.h365 int32_t GetSimAccountInfo(int32_t slotId, IccAccountInfo &info);
H A Di_sim_manager.h67 virtual int32_t GetSimAccountInfo(int32_t slotId, bool denied, IccAccountInfo &info) = 0;
H A Dcore_service_proxy.h69 int32_t GetSimAccountInfo(int32_t slotId, IccAccountInfo &info) override;
H A Di_core_service.h100 virtual int32_t GetSimAccountInfo(int32_t slotId, IccAccountInfo &info) = 0;
H A Dcore_manager_inner.h301 int32_t GetSimAccountInfo(int32_t slotId, IccAccountInfo &info);
/base/telephony/core_service/services/sim/src/
H A Dmulti_sim_controller.cpp464 if (GetSimAccountInfo(slotId, true, iccAccountInfo) == TELEPHONY_ERR_SUCCESS) { in GetSimId()
640 int32_t MultiSimController::GetSimAccountInfo(int32_t slotId, bool denied, IccAccountInfo &info) in GetSimAccountInfo() function in OHOS::Telephony::MultiSimController
643 TELEPHONY_LOGE("MultiSimController::GetSimAccountInfo InValidData"); in GetSimAccountInfo()
648 TELEPHONY_LOGE("MultiSimController::GetSimAccountInfo failed by out of range"); in GetSimAccountInfo()
652 TELEPHONY_LOGE("MultiSimController::GetSimAccountInfo failed by no data"); in GetSimAccountInfo()
H A Dsim_manager.cpp312 int32_t SimManager::GetSimAccountInfo(int32_t slotId, bool denied, IccAccountInfo &info) in GetSimAccountInfo() function in OHOS::Telephony::SimManager
318 return multiSimController_->GetSimAccountInfo(slotId, denied, info); in GetSimAccountInfo()
595 if (GetSimAccountInfo(slotId, false, accountInfo) == TELEPHONY_ERR_SUCCESS) { in GetSimId()
598 TELEPHONY_LOGE("GetSimAccountInfo fail!"); in GetSimId()
/base/telephony/core_service/frameworks/native/src/
H A Dcore_service_client.cpp465 int32_t CoreServiceClient::GetSimAccountInfo(int32_t slotId, IccAccountInfo &info) in GetSimAccountInfo() function in OHOS::Telephony::CoreServiceClient
472 return proxy->GetSimAccountInfo(slotId, info); in GetSimAccountInfo()
H A Dcore_manager_inner.cpp1805 int32_t CoreManagerInner::GetSimAccountInfo(int32_t slotId, IccAccountInfo &info) in GetSimAccountInfo() function in OHOS::Telephony::CoreManagerInner
1811 return simManager_->GetSimAccountInfo(slotId, false, info); in GetSimAccountInfo()
/base/telephony/core_service/services/core/include/
H A Dcore_service.h138 int32_t GetSimAccountInfo(int32_t slotId, IccAccountInfo &info) override;
/base/telephony/core_service/test/unittest/esim_gtest/mock/include/
H A Desim_core_service_stub_test.h265 int32_t GetSimAccountInfo(int32_t slotId, IccAccountInfo &info) override
/base/telephony/core_service/services/core/src/
H A Dcore_service.cpp626 int32_t CoreService::GetSimAccountInfo(int32_t slotId, IccAccountInfo &info) in GetSimAccountInfo() function in OHOS::Telephony::CoreService
633 TELEPHONY_LOGD("CoreService::GetSimAccountInfo(), slotId = %{public}d", slotId); in GetSimAccountInfo()
638 return simManager_->GetSimAccountInfo(slotId, denied, info); in GetSimAccountInfo()
/base/telephony/core_service/frameworks/js/sim/src/
H A Dnapi_sim.cpp1279 DelayedRefSingleton<CoreServiceClient>::GetInstance().GetSimAccountInfo(info->asyncContext.slotId, operInfo); in NativeGetSimAccountInfo()
1299 env, status, asyncContext, false, { "GetSimAccountInfo", Permission::GET_TELEPHONY_STATE }); in GetSimAccountInfoCallback()
1302 napi_value GetSimAccountInfo(napi_env env, napi_callback_info info) in GetSimAccountInfo() function
1309 .funcName = "GetSimAccountInfo", in GetSimAccountInfo()
3179 DECLARE_NAPI_FUNCTION("getSimAccountInfo", GetSimAccountInfo), in InitSimInterface()

Completed in 39 milliseconds

12