Home
last modified time | relevance | path

Searched refs:HasOperatorPrivileges (Results 1 – 25 of 26) sorted by relevance

12

/ohos5.0/base/telephony/core_service/services/sim/src/
H A Dsim_account_manager.cpp110 int32_t SimAccountManager::HasOperatorPrivileges(const int32_t slotId, bool &hasOperatorPrivileges) in HasOperatorPrivileges() function in OHOS::Telephony::SimAccountManager
114 return privilegeController_->HasOperatorPrivileges(hasOperatorPrivileges); in HasOperatorPrivileges()
127 return controller->HasOperatorPrivileges(hasOperatorPrivileges); in HasOperatorPrivileges()
H A Dicc_operator_privilege_controller.cpp199 int32_t IccOperatorPrivilegeController::HasOperatorPrivileges(bool &hasOperatorPrivileges) in HasOperatorPrivileges() function in OHOS::Telephony::IccOperatorPrivilegeController
203 return HasOperatorPrivileges(certHash, packageName, hasOperatorPrivileges); in HasOperatorPrivileges()
206 int32_t IccOperatorPrivilegeController::HasOperatorPrivileges( in HasOperatorPrivileges() function in OHOS::Telephony::IccOperatorPrivilegeController
H A Dsim_manager.cpp613 int32_t SimManager::HasOperatorPrivileges(const int32_t slotId, bool &hasOperatorPrivileges) in HasOperatorPrivileges() function in OHOS::Telephony::SimManager
620 return simAccountManager_[slotId]->HasOperatorPrivileges(slotId, hasOperatorPrivileges); in HasOperatorPrivileges()
/ohos5.0/base/telephony/core_service/services/sim/include/
H A Dicc_operator_privilege_controller.h43 int32_t HasOperatorPrivileges(bool &hasOperatorPrivileges);
44 int32_t HasOperatorPrivileges(
H A Dsim_account_manager.h37 int32_t HasOperatorPrivileges(const int32_t slotId, bool &hasOperatorPrivileges);
H A Dsim_manager.h90 int32_t HasOperatorPrivileges(const int32_t slotId, bool &hasOperatorPrivileges) override;
/ohos5.0/base/telephony/core_service/test/fuzztest/updateiccdiallingnumbers_fuzzer/
H A Dupdateiccdiallingnumbers_fuzzer.cpp115 void HasOperatorPrivileges(const uint8_t *data, size_t size) in HasOperatorPrivileges() function
190 HasOperatorPrivileges(data, size); in DoSomethingInterestingWithMyAPI()
/ohos5.0/base/telephony/core_service/test/unittest/core_service_gtest/
H A Dsim_test_util.cpp409 void SimTest::HasOperatorPrivileges(CoreServiceTestHelper &helper) in HasOperatorPrivileges() function in OHOS::Telephony::SimTest
413 …int32_t result = CoreServiceClient::GetInstance().HasOperatorPrivileges(slotId, hasOperatorPrivile… in HasOperatorPrivileges()
421 …int32_t result = CoreServiceClient::GetInstance().HasOperatorPrivileges(slotId, hasOperatorPrivile… in HasOperatorPrivileges1()
H A Dsim_test_util.h210 static void HasOperatorPrivileges(CoreServiceTestHelper &helper);
H A Dsim_core_service_test.cpp180 EXPECT_NE(mCoreService->HasOperatorPrivileges(0, hasValue), TELEPHONY_ERR_SUCCESS);
341 EXPECT_NE(mCoreService->HasOperatorPrivileges(0, hasValue), TELEPHONY_ERR_SUCCESS);
H A Dzero_branch_test_sim_ril.cpp101 …iccOperatorPrivilegeController->HasOperatorPrivileges(certHash, packageName, hasOperatorPrivileges…
120 …EXPECT_GT(iccOperatorPrivilegeController->HasOperatorPrivileges(hasOperatorPrivileges), TELEPHONY_…
149 simAccountManager->HasOperatorPrivileges(0, hasOperatorPrivileges);
151 simAccountManager->HasOperatorPrivileges(0, hasOperatorPrivileges);
153 …EXPECT_GE(simAccountManager->HasOperatorPrivileges(0, hasOperatorPrivileges), TELEPHONY_ERR_SUCCES…
155 …EXPECT_GE(simAccountManager->HasOperatorPrivileges(0, hasOperatorPrivileges), TELEPHONY_ERR_SUCCES…
H A Dsim_test.cpp1509 if (!helper.Run(HasOperatorPrivileges, std::ref(helper))) {
H A Dzero_branch_test.cpp1076 EXPECT_GT(mInner.HasOperatorPrivileges(0, boolResult), TELEPHONY_ERR_SUCCESS);
1575 EXPECT_GT(simManager->HasOperatorPrivileges(0, boolResult), TELEPHONY_ERR_SUCCESS);
1576 EXPECT_GT(simManager->HasOperatorPrivileges(INVALID_SLOTID, boolResult), TELEPHONY_ERR_SUCCESS);
/ohos5.0/base/telephony/core_service/interfaces/innerkits/include/
H A Di_sim_manager.h77 virtual int32_t HasOperatorPrivileges(const int32_t slotId, bool &hasOperatorPrivileges) = 0;
H A Dcore_service_client.h789 int32_t HasOperatorPrivileges(const int32_t slotId, bool &hasOperatorPrivileges);
H A Di_core_service.h138 virtual int32_t HasOperatorPrivileges(const int32_t slotId, bool &hasOperatorPrivileges) = 0;
H A Dcore_service_proxy.h136 int32_t HasOperatorPrivileges(const int32_t slotId, bool &hasOperatorPrivileges) override;
H A Dcore_manager_inner.h243 int32_t HasOperatorPrivileges(const int32_t slotId, bool &hasOperatorPrivileges);
/ohos5.0/base/telephony/core_service/frameworks/native/src/
H A Dcore_service_client.cpp926 int32_t CoreServiceClient::HasOperatorPrivileges(const int32_t slotId, bool &hasOperatorPrivileges) in HasOperatorPrivileges() function in OHOS::Telephony::CoreServiceClient
933 return proxy->HasOperatorPrivileges(slotId, hasOperatorPrivileges); in HasOperatorPrivileges()
H A Dcore_manager_inner.cpp2354 int32_t CoreManagerInner::HasOperatorPrivileges(const int32_t slotId, bool &hasOperatorPrivileges) in HasOperatorPrivileges() function in OHOS::Telephony::CoreManagerInner
2361 return simManager_->HasOperatorPrivileges(slotId, hasOperatorPrivileges); in HasOperatorPrivileges()
/ohos5.0/base/telephony/core_service/services/core/include/
H A Dcore_service.h227 int32_t HasOperatorPrivileges(const int32_t slotId, bool &hasOperatorPrivileges) override;
/ohos5.0/base/telephony/core_service/services/core/src/
H A Dcore_service.cpp1449 int32_t CoreService::HasOperatorPrivileges(const int32_t slotId, bool &hasOperatorPrivileges) in HasOperatorPrivileges() function in OHOS::Telephony::CoreService
1456 return simManager_->HasOperatorPrivileges(slotId, hasOperatorPrivileges); in HasOperatorPrivileges()
H A Dcore_service_stub.cpp1770 int32_t result = HasOperatorPrivileges(slotId, hasOperatorPrivileges); in OnHasOperatorPrivileges()
/ohos5.0/base/telephony/core_service/frameworks/js/sim/src/
H A Dnapi_sim.cpp2848 int32_t errorCode = DelayedRefSingleton<CoreServiceClient>::GetInstance().HasOperatorPrivileges( in NativeHasOperatorPrivileges()
2867 napi_value HasOperatorPrivileges(napi_env env, napi_callback_info info) in HasOperatorPrivileges() function
3180 DECLARE_NAPI_FUNCTION("hasOperatorPrivileges", HasOperatorPrivileges), in InitSimInterface()
/ohos5.0/base/telephony/core_service/services/sim/test/
H A Dtest.cpp1352 int32_t result = g_telephonyService->HasOperatorPrivileges(slotId, hasOperatorPrivileges); in TestHasOperatorPrivileges()

12