Home
last modified time | relevance | path

Searched refs:iccAccountInfoList (Results 1 – 20 of 20) sorted by relevance

/ohos5.0/base/telephony/core_service/test/unittest/core_service_gtest/
H A Dsim_icc_test.cpp47 std::vector<IccAccountInfo> iccAccountInfoList; variable
48 … int32_t result = CoreServiceClient::GetInstance().GetActiveSimAccountInfoList(iccAccountInfoList);
64 std::vector<IccAccountInfo> iccAccountInfoList; variable
65 … int32_t result = CoreServiceClient::GetInstance().GetActiveSimAccountInfoList(iccAccountInfoList);
80 std::vector<IccAccountInfo> iccAccountInfoList; variable
81 … int32_t result = CoreServiceClient::GetInstance().GetActiveSimAccountInfoList(iccAccountInfoList);
H A Dsim_core_service_test.cpp119 std::vector<IccAccountInfo> iccAccountInfoList = {}; variable
120 EXPECT_NE(mCoreService->GetActiveSimAccountInfoList(iccAccountInfoList), TELEPHONY_ERR_SUCCESS);
264 std::vector<IccAccountInfo> iccAccountInfoList = {}; variable
265 EXPECT_NE(mCoreService->GetActiveSimAccountInfoList(iccAccountInfoList), TELEPHONY_ERR_SUCCESS);
H A Dzero_branch_test_core_service.cpp208 std::vector<IccAccountInfo> iccAccountInfoList = {}; variable
209 DelayedSingleton<CoreService>::GetInstance()->GetActiveSimAccountInfoList(iccAccountInfoList);
H A Dzero_branch_test.cpp1117 std::vector<IccAccountInfo> iccAccountInfoList; variable
1118 EXPECT_GT(mInner.GetActiveSimAccountInfoList(iccAccountInfoList), TELEPHONY_ERR_SUCCESS);
1376 std::vector<IccAccountInfo> iccAccountInfoList = {}; variable
1377 …EXPECT_NE(multiSimController->GetActiveSimAccountInfoList(false, iccAccountInfoList), TELEPHONY_ER…
1448 std::vector<IccAccountInfo> iccAccountInfoList; variable
1449 …EXPECT_GE(multiSimController->GetActiveSimAccountInfoList(false, iccAccountInfoList), TELEPHONY_ER…
1450 …EXPECT_GE(multiSimController->GetActiveSimAccountInfoList(true, iccAccountInfoList), TELEPHONY_ERR…
1569 std::vector<IccAccountInfo> iccAccountInfoList; variable
1570 …EXPECT_GT(simManager->GetActiveSimAccountInfoList(false, iccAccountInfoList), TELEPHONY_ERR_SUCCES…
/ohos5.0/base/telephony/core_service/services/sim/include/
H A Dmulti_sim_controller.h69 … int32_t GetActiveSimAccountInfoList(bool denied, std::vector<IccAccountInfo> &iccAccountInfoList);
H A Dsim_manager.h87 …GetActiveSimAccountInfoList(bool denied, std::vector<IccAccountInfo> &iccAccountInfoList) override;
/ohos5.0/base/telephony/core_service/services/sim/src/
H A Dmulti_sim_controller.cpp1239 …ntroller::GetActiveSimAccountInfoList(bool denied, std::vector<IccAccountInfo> &iccAccountInfoList) in GetActiveSimAccountInfoList() argument
1245 iccAccountInfoList.clear(); in GetActiveSimAccountInfoList()
1254 iccAccountInfoList.emplace_back(*it); in GetActiveSimAccountInfoList()
1257 return iccAccountInfoList.size() > 0 ? TELEPHONY_ERR_SUCCESS : TELEPHONY_ERR_NO_SIM_CARD; in GetActiveSimAccountInfoList()
H A Dsim_manager.cpp549 …mManager::GetActiveSimAccountInfoList(bool denied, std::vector<IccAccountInfo> &iccAccountInfoList) in GetActiveSimAccountInfoList() argument
555 return multiSimController_->GetActiveSimAccountInfoList(denied, iccAccountInfoList); in GetActiveSimAccountInfoList()
/ohos5.0/base/telephony/core_service/interfaces/innerkits/include/
H A Di_sim_manager.h74 …32_t GetActiveSimAccountInfoList(bool denied, std::vector<IccAccountInfo> &iccAccountInfoList) = 0;
H A Dcore_service_client.h432 int32_t GetActiveSimAccountInfoList(std::vector<IccAccountInfo> &iccAccountInfoList);
H A Di_core_service.h99 … virtual int32_t GetActiveSimAccountInfoList(std::vector<IccAccountInfo> &iccAccountInfoList) = 0;
H A Dcore_service_proxy.h79 int32_t GetActiveSimAccountInfoList(std::vector<IccAccountInfo> &iccAccountInfoList) override;
H A Dcore_manager_inner.h266 int32_t GetActiveSimAccountInfoList(std::vector<IccAccountInfo> &iccAccountInfoList);
/ohos5.0/base/telephony/core_service/services/core/src/
H A Dcore_service_stub.cpp1362 std::vector<IccAccountInfo> iccAccountInfoList; in OnGetActiveSimAccountInfoList() local
1363 int32_t result = GetActiveSimAccountInfoList(iccAccountInfoList); in OnGetActiveSimAccountInfoList()
1364 int32_t size = static_cast<int32_t>(iccAccountInfoList.size()); in OnGetActiveSimAccountInfoList()
1371 std::vector<IccAccountInfo>::iterator it = iccAccountInfoList.begin(); in OnGetActiveSimAccountInfoList()
1372 while (it != iccAccountInfoList.end()) { in OnGetActiveSimAccountInfoList()
H A Dcore_service.cpp790 int32_t CoreService::GetActiveSimAccountInfoList(std::vector<IccAccountInfo> &iccAccountInfoList) in GetActiveSimAccountInfoList() argument
802 return simManager_->GetActiveSimAccountInfoList(denied, iccAccountInfoList); in GetActiveSimAccountInfoList()
/ohos5.0/base/telephony/core_service/frameworks/native/src/
H A Dcore_service_client.cpp544 …2_t CoreServiceClient::GetActiveSimAccountInfoList(std::vector<IccAccountInfo> &iccAccountInfoList) in GetActiveSimAccountInfoList() argument
551 return proxy->GetActiveSimAccountInfoList(iccAccountInfoList); in GetActiveSimAccountInfoList()
H A Dcore_service_proxy.cpp1428 …32_t CoreServiceProxy::GetActiveSimAccountInfoList(std::vector<IccAccountInfo> &iccAccountInfoList) in GetActiveSimAccountInfoList() argument
1455 iccAccountInfoList.clear(); in GetActiveSimAccountInfoList()
1460 iccAccountInfoList.emplace_back(accountInfo); in GetActiveSimAccountInfoList()
H A Dcore_manager_inner.cpp1977 …32_t CoreManagerInner::GetActiveSimAccountInfoList(std::vector<IccAccountInfo> &iccAccountInfoList) in GetActiveSimAccountInfoList() argument
1983 return simManager_->GetActiveSimAccountInfoList(false, iccAccountInfoList); in GetActiveSimAccountInfoList()
/ohos5.0/base/telephony/core_service/services/core/include/
H A Dcore_service.h172 int32_t GetActiveSimAccountInfoList(std::vector<IccAccountInfo> &iccAccountInfoList) override;
/ohos5.0/base/telephony/core_service/services/sim/test/
H A Dtest.cpp938 std::vector<IccAccountInfo> iccAccountInfoList; in TestGetActiveSimAccountInfoList() local
939 int32_t result = g_telephonyService->GetActiveSimAccountInfoList(iccAccountInfoList); in TestGetActiveSimAccountInfoList()
944 for (IccAccountInfo iccAccountInfo : iccAccountInfoList) { in TestGetActiveSimAccountInfoList()