/ohos5.0/base/telephony/core_service/test/unittest/core_service_gtest/ |
H A D | sim_icc_test.cpp | 47 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 D | sim_core_service_test.cpp | 119 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 D | zero_branch_test_core_service.cpp | 208 std::vector<IccAccountInfo> iccAccountInfoList = {}; variable 209 DelayedSingleton<CoreService>::GetInstance()->GetActiveSimAccountInfoList(iccAccountInfoList);
|
H A D | zero_branch_test.cpp | 1117 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 D | multi_sim_controller.h | 69 … int32_t GetActiveSimAccountInfoList(bool denied, std::vector<IccAccountInfo> &iccAccountInfoList);
|
H A D | sim_manager.h | 87 …GetActiveSimAccountInfoList(bool denied, std::vector<IccAccountInfo> &iccAccountInfoList) override;
|
/ohos5.0/base/telephony/core_service/services/sim/src/ |
H A D | multi_sim_controller.cpp | 1239 …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 D | sim_manager.cpp | 549 …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 D | i_sim_manager.h | 74 …32_t GetActiveSimAccountInfoList(bool denied, std::vector<IccAccountInfo> &iccAccountInfoList) = 0;
|
H A D | core_service_client.h | 432 int32_t GetActiveSimAccountInfoList(std::vector<IccAccountInfo> &iccAccountInfoList);
|
H A D | i_core_service.h | 99 … virtual int32_t GetActiveSimAccountInfoList(std::vector<IccAccountInfo> &iccAccountInfoList) = 0;
|
H A D | core_service_proxy.h | 79 int32_t GetActiveSimAccountInfoList(std::vector<IccAccountInfo> &iccAccountInfoList) override;
|
H A D | core_manager_inner.h | 266 int32_t GetActiveSimAccountInfoList(std::vector<IccAccountInfo> &iccAccountInfoList);
|
/ohos5.0/base/telephony/core_service/services/core/src/ |
H A D | core_service_stub.cpp | 1362 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 D | core_service.cpp | 790 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 D | core_service_client.cpp | 544 …2_t CoreServiceClient::GetActiveSimAccountInfoList(std::vector<IccAccountInfo> &iccAccountInfoList) in GetActiveSimAccountInfoList() argument 551 return proxy->GetActiveSimAccountInfoList(iccAccountInfoList); in GetActiveSimAccountInfoList()
|
H A D | core_service_proxy.cpp | 1428 …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 D | core_manager_inner.cpp | 1977 …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 D | core_service.h | 172 int32_t GetActiveSimAccountInfoList(std::vector<IccAccountInfo> &iccAccountInfoList) override;
|
/ohos5.0/base/telephony/core_service/services/sim/test/ |
H A D | test.cpp | 938 std::vector<IccAccountInfo> iccAccountInfoList; in TestGetActiveSimAccountInfoList() local 939 int32_t result = g_telephonyService->GetActiveSimAccountInfoList(iccAccountInfoList); in TestGetActiveSimAccountInfoList() 944 for (IccAccountInfo iccAccountInfo : iccAccountInfoList) { in TestGetActiveSimAccountInfoList()
|