/base/telephony/core_service/test/unittest/core_service_gtest/ |
H A D | sim_icc_test.cpp | 47 std::vector<IccAccountInfo> iccAccountInfoList; in HWTEST_F() local 48 int32_t result = CoreServiceClient::GetInstance().GetActiveSimAccountInfoList(iccAccountInfoList); in HWTEST_F() 64 std::vector<IccAccountInfo> iccAccountInfoList; in HWTEST_F() local 65 int32_t result = CoreServiceClient::GetInstance().GetActiveSimAccountInfoList(iccAccountInfoList); in HWTEST_F() 80 std::vector<IccAccountInfo> iccAccountInfoList; in HWTEST_F() local 81 int32_t result = CoreServiceClient::GetInstance().GetActiveSimAccountInfoList(iccAccountInfoList); in HWTEST_F()
|
H A D | sim_core_service_test.cpp | 119 std::vector<IccAccountInfo> iccAccountInfoList = {}; in HWTEST_F() local 120 EXPECT_NE(mCoreService->GetActiveSimAccountInfoList(iccAccountInfoList), TELEPHONY_ERR_SUCCESS); in HWTEST_F() 264 std::vector<IccAccountInfo> iccAccountInfoList = {}; in HWTEST_F() local 265 EXPECT_NE(mCoreService->GetActiveSimAccountInfoList(iccAccountInfoList), TELEPHONY_ERR_SUCCESS); in HWTEST_F()
|
H A D | zero_branch_test_core_service.cpp | 215 std::vector<IccAccountInfo> iccAccountInfoList = {}; in HWTEST_F() local 216 DelayedSingleton<CoreService>::GetInstance()->GetActiveSimAccountInfoList(iccAccountInfoList); in HWTEST_F()
|
H A D | vsim_test.cpp | 765 std::vector<IccAccountInfo> iccAccountInfoList; in HWTEST_F() local 766 status = CoreManagerInner::GetInstance().GetActiveSimAccountInfoList(iccAccountInfoList); in HWTEST_F()
|
H A D | zero_branch_test.cpp | 1135 std::vector<IccAccountInfo> iccAccountInfoList; in HWTEST_F() local 1136 EXPECT_GT(mInner.GetActiveSimAccountInfoList(iccAccountInfoList), TELEPHONY_ERR_SUCCESS); in HWTEST_F() 1394 std::vector<IccAccountInfo> iccAccountInfoList = {}; in HWTEST_F() local 1395 EXPECT_NE(multiSimController->GetActiveSimAccountInfoList(false, iccAccountInfoList), TELEPHONY_ERR_SUCCESS); in HWTEST_F() 1533 std::vector<IccAccountInfo> iccAccountInfoList; in HWTEST_F() local 1534 EXPECT_GT(simManager->GetActiveSimAccountInfoList(false, iccAccountInfoList), TELEPHONY_ERR_SUCCESS); in HWTEST_F()
|
/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 | 88 int32_t GetActiveSimAccountInfoList(bool denied, std::vector<IccAccountInfo> &iccAccountInfoList) override;
|
/base/telephony/core_service/services/sim/src/ |
H A D | multi_sim_controller.cpp | 1218 int32_t MultiSimController::GetActiveSimAccountInfoList(bool denied, std::vector<IccAccountInfo> &iccAccountInfoList) in GetActiveSimAccountInfoList() argument 1224 iccAccountInfoList.clear(); in GetActiveSimAccountInfoList() 1233 iccAccountInfoList.emplace_back(*it); in GetActiveSimAccountInfoList() 1236 return iccAccountInfoList.size() > 0 ? TELEPHONY_ERR_SUCCESS : TELEPHONY_ERR_NO_SIM_CARD; in GetActiveSimAccountInfoList()
|
H A D | sim_manager.cpp | 560 int32_t SimManager::GetActiveSimAccountInfoList(bool denied, std::vector<IccAccountInfo> &iccAccountInfoList)
in GetActiveSimAccountInfoList() argument 566 return multiSimController_->GetActiveSimAccountInfoList(denied, iccAccountInfoList);
in GetActiveSimAccountInfoList()
|
/base/telephony/core_service/interfaces/innerkits/include/ |
H A D | core_service_client.h | 429 * @param iccAccountInfoList[out], the list of active SIM card account information 432 int32_t GetActiveSimAccountInfoList(std::vector<IccAccountInfo> &iccAccountInfoList);
|
H A D | i_sim_manager.h | 86 virtual int32_t GetActiveSimAccountInfoList(bool denied, std::vector<IccAccountInfo> &iccAccountInfoList) = 0;
|
H A D | core_service_proxy.h | 79 int32_t GetActiveSimAccountInfoList(std::vector<IccAccountInfo> &iccAccountInfoList) override;
|
H A D | i_core_service.h | 110 virtual int32_t GetActiveSimAccountInfoList(std::vector<IccAccountInfo> &iccAccountInfoList) = 0;
|
H A D | core_manager_inner.h | 267 int32_t GetActiveSimAccountInfoList(std::vector<IccAccountInfo> &iccAccountInfoList);
|
/base/telephony/cellular_data/test/mock/ |
H A D | mock_core_service.h | 108 MOCK_METHOD(int32_t, GetActiveSimAccountInfoList, (std::vector<IccAccountInfo> & iccAccountInfoList), (override));
|
/base/telephony/core_service/frameworks/native/src/ |
H A D | core_service_client.cpp | 545 int32_t CoreServiceClient::GetActiveSimAccountInfoList(std::vector<IccAccountInfo> &iccAccountInfoList) in GetActiveSimAccountInfoList() argument 552 return proxy->GetActiveSimAccountInfoList(iccAccountInfoList); in GetActiveSimAccountInfoList()
|
H A D | core_manager_inner.cpp | 1977 int32_t CoreManagerInner::GetActiveSimAccountInfoList(std::vector<IccAccountInfo> &iccAccountInfoList) in GetActiveSimAccountInfoList() argument 1983 return simManager_->GetActiveSimAccountInfoList(false, iccAccountInfoList); in GetActiveSimAccountInfoList()
|
H A D | core_service_proxy.cpp | 1431 int32_t CoreServiceProxy::GetActiveSimAccountInfoList(std::vector<IccAccountInfo> &iccAccountInfoList) in GetActiveSimAccountInfoList() argument 1458 iccAccountInfoList.clear(); in GetActiveSimAccountInfoList() 1463 iccAccountInfoList.emplace_back(accountInfo); in GetActiveSimAccountInfoList()
|
/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()
|
/base/telephony/core_service/services/core/include/ |
H A D | core_service.h | 172 int32_t GetActiveSimAccountInfoList(std::vector<IccAccountInfo> &iccAccountInfoList) override;
|
/base/telephony/core_service/test/unittest/esim_gtest/mock/include/ |
H A D | esim_core_service_stub_test.h | 315 int32_t GetActiveSimAccountInfoList(std::vector<IccAccountInfo> &iccAccountInfoList) override
|
/base/telephony/core_service/services/core/src/ |
H A D | core_service_stub.cpp | 1424 std::vector<IccAccountInfo> iccAccountInfoList; in OnGetActiveSimAccountInfoList() local 1425 int32_t result = GetActiveSimAccountInfoList(iccAccountInfoList); in OnGetActiveSimAccountInfoList() 1426 int32_t size = static_cast<int32_t>(iccAccountInfoList.size()); in OnGetActiveSimAccountInfoList() 1433 std::vector<IccAccountInfo>::iterator it = iccAccountInfoList.begin(); in OnGetActiveSimAccountInfoList() 1434 while (it != iccAccountInfoList.end()) { in OnGetActiveSimAccountInfoList()
|
H A D | core_service.cpp | 789 int32_t CoreService::GetActiveSimAccountInfoList(std::vector<IccAccountInfo> &iccAccountInfoList) in GetActiveSimAccountInfoList() argument 801 return simManager_->GetActiveSimAccountInfoList(denied, iccAccountInfoList); in GetActiveSimAccountInfoList()
|