Home
last modified time | relevance | path

Searched refs:SetLockState (Results 1 – 23 of 23) sorted by relevance

/base/telephony/core_service/services/sim/include/
Dsim_state_manager.h41 int32_t SetLockState(int32_t slotId, const LockInfo &options, LockStatusResponse &response);
Dsim_state_handle.h118 void SetLockState(int32_t slotId, const LockInfo &options);
Dsim_manager.h49 …int32_t SetLockState(int32_t slotId, const LockInfo &options, LockStatusResponse &response) overri…
/base/telephony/core_service/test/unittest/core_service_gtest/
Dsim_test_util.cpp196 …int32_t result = CoreServiceClient::GetInstance().SetLockState(SimTest::slotId_, testInfo, respons… in SetLockStateTestFunc()
208 …int32_t result = CoreServiceClient::GetInstance().SetLockState(SimTest::slotId1_, testInfo, respon… in SetLockStateTestFunc1()
219 …int32_t result = CoreServiceClient::GetInstance().SetLockState(SimTest::slotId_, testInfo, respons… in SetFDNStateTestFunc()
231 …int32_t result = CoreServiceClient::GetInstance().SetLockState(SimTest::slotId1_, testInfo, respon… in SetFDNStateTestFunc1()
Dsim_core_service_test.cpp68 EXPECT_NE(mCoreService->SetLockState(0, mLockInfo, mLockStatusResponse), TELEPHONY_ERR_SUCCESS);
214 EXPECT_NE(mCoreService->SetLockState(0, mLockInfo, mLockStatusResponse), TELEPHONY_ERR_SUCCESS);
Dzero_branch_test.cpp1044 EXPECT_GT(mInner.SetLockState(0, options, response), TELEPHONY_ERR_SUCCESS);
1537 EXPECT_GT(simManager->SetLockState(0, mLockInfo, mLockStatusResponse), TELEPHONY_ERR_SUCCESS);
1538 …EXPECT_GT(simManager->SetLockState(INVALID_SLOTID, mLockInfo, mLockStatusResponse), TELEPHONY_ERR_…
1576 …EXPECT_GT(simStateManager->SetLockState(0, mLockInfo, mLockStatusResponse), TELEPHONY_ERR_SUCCESS);
1579 …EXPECT_GT(simStateManager->SetLockState(0, mLockInfo, mLockStatusResponse), TELEPHONY_ERR_SUCCESS);
1581 …EXPECT_GT(simStateManager->SetLockState(0, mLockInfo, mLockStatusResponse), TELEPHONY_ERR_SUCCESS);
Dzero_branch_test_sim_ril.cpp444 …EXPECT_GT(simStateManager->SetLockState(0, mLockInfo, mLockStatusResponse), TELEPHONY_ERR_SUCCESS);
/base/telephony/core_service/services/sim/src/
Dsim_state_manager.cpp220 int32_t SimStateManager::SetLockState(int32_t slotId, const LockInfo &options, LockStatusResponse &… in SetLockState() function in OHOS::Telephony::SimStateManager
239 simStateHandle_->SetLockState(slotId, options); in SetLockState()
Dsim_manager.cpp175 int32_t SimManager::SetLockState(int32_t slotId, const LockInfo &options, LockStatusResponse &respo… in SetLockState() function in OHOS::Telephony::SimManager
181 return simStateManager_[slotId]->SetLockState(slotId, options, response); in SetLockState()
Dsim_state_handle.cpp236 void SimStateHandle::SetLockState(int32_t slotId, const LockInfo &options) in SetLockState() function in OHOS::Telephony::SimStateHandle
/base/telephony/core_service/interfaces/innerkits/include/
Di_sim_manager.h41 …virtual int32_t SetLockState(int32_t slotId, const LockInfo &options, LockStatusResponse &response…
Dcore_service_client.h502 int32_t SetLockState(int32_t slotId, const LockInfo &options, LockStatusResponse &response);
Di_core_service.h66 …virtual int32_t SetLockState(int32_t slotId, const LockInfo &options, LockStatusResponse &response…
Dcore_service_proxy.h94 …int32_t SetLockState(const int32_t slotId, const LockInfo &options, LockStatusResponse &response) …
Dcore_manager_inner.h248 int32_t SetLockState(int32_t slotId, const LockInfo &options, LockStatusResponse &response);
/base/telephony/core_service/frameworks/native/src/
Dcore_service_client.cpp608 int32_t CoreServiceClient::SetLockState(int32_t slotId, const LockInfo &options, LockStatusResponse… in SetLockState() function in OHOS::Telephony::CoreServiceClient
615 return proxy->SetLockState(slotId, options, response); in SetLockState()
Dcore_manager_inner.cpp2178 int32_t CoreManagerInner::SetLockState(int32_t slotId, const LockInfo &options, LockStatusResponse … in SetLockState() function in OHOS::Telephony::CoreManagerInner
2184 return simManager_->SetLockState(slotId, options, response); in SetLockState()
Dcore_service_proxy.cpp1679 int32_t CoreServiceProxy::SetLockState(const int32_t slotId, const LockInfo &options, LockStatusRes… in SetLockState() function in OHOS::Telephony::CoreServiceProxy
/base/telephony/core_service/services/core/include/
Dcore_service.h129 …int32_t SetLockState(int32_t slotId, const LockInfo &options, LockStatusResponse &response) overri…
/base/telephony/core_service/services/core/src/
Dcore_service.cpp906 int32_t CoreService::SetLockState(int32_t slotId, const LockInfo &options, LockStatusResponse &resp… in SetLockState() function in OHOS::Telephony::CoreService
926 return simManager_->SetLockState(slotId, options, response); in SetLockState()
Dcore_service_stub.cpp972 int32_t result = SetLockState(slotId, options, response); in OnSetLockState()
/base/telephony/core_service/frameworks/js/sim/src/
Dnapi_sim.cpp1463 int32_t errorCode = DelayedRefSingleton<CoreServiceClient>::GetInstance().SetLockState( in NativeSetLockState()
1486 napi_value SetLockState(napi_env env, napi_callback_info info) in SetLockState() function
3028 DECLARE_NAPI_FUNCTION("setLockState", SetLockState), in InitSimLockInterface()
/base/telephony/core_service/services/sim/test/
Dtest.cpp1155 g_telephonyService->SetLockState(testSlot, testInfo, response); in TestSetLockState()