Home
last modified time | relevance | path

Searched refs:AlterPin (Results 1 – 22 of 22) sorted by relevance

/base/telephony/core_service/services/sim/include/
Dsim_state_manager.h39 int32_t AlterPin(
Dsim_state_handle.h111 void AlterPin(int32_t slotId, const std::string &newPin, const std::string &oldPin);
Dsim_manager.h48 int32_t AlterPin(
/base/telephony/core_service/services/sim/src/
Dsim_state_manager.cpp183 int32_t SimStateManager::AlterPin( in AlterPin() function in OHOS::Telephony::SimStateManager
193 simStateHandle_->AlterPin(slotId, newPin, oldPin); in AlterPin()
Dsim_manager.cpp207 int32_t SimManager::AlterPin( in AlterPin() function in OHOS::Telephony::SimManager
214 return simStateManager_[slotId]->AlterPin(slotId, newPin, oldPin, response); in AlterPin()
Dsim_state_handle.cpp118 void SimStateHandle::AlterPin(int32_t slotId, const std::string &newPin, const std::string &oldPin) in AlterPin() function in OHOS::Telephony::SimStateHandle
/base/telephony/core_service/interfaces/innerkits/include/
Di_sim_manager.h40 virtual int32_t AlterPin(
Dcore_service_client.h81 int32_t AlterPin(
Di_core_service.h56 virtual int32_t AlterPin(
Dcore_service_proxy.h80 … int32_t AlterPin(const int32_t slotId, const std::u16string &newPin, const std::u16string &oldPin,
Dcore_manager_inner.h238 int32_t AlterPin(
/base/telephony/core_service/services/core/include/
Dcore_service.h112 int32_t AlterPin(int32_t slotId, const std::u16string &newPin, const std::u16string &oldPin,
/base/telephony/core_service/frameworks/native/src/
Dcore_service_client.cpp524 int32_t CoreServiceClient::AlterPin( in AlterPin() function in OHOS::Telephony::CoreServiceClient
532 return proxy->AlterPin(slotId, newPin, oldPin, response); in AlterPin()
Dcore_manager_inner.cpp2044 int32_t CoreManagerInner::AlterPin( in AlterPin() function in OHOS::Telephony::CoreManagerInner
2051 return simManager_->AlterPin(slotId, newPin, oldPin, response); in AlterPin()
Dcore_service_proxy.cpp1432 int32_t CoreServiceProxy::AlterPin( in AlterPin() function in OHOS::Telephony::CoreServiceProxy
/base/telephony/cellular_call/services/connection/src/
Dsupplement_request.cpp277 int32_t result = CoreManagerInner::GetInstance().AlterPin(slotId, newPin, oldPin, response); in AlterPinPassword()
/base/telephony/core_service/services/core/src/
Dcore_service.cpp672 int32_t CoreService::AlterPin( in AlterPin() function in OHOS::Telephony::CoreService
685 return simManager_->AlterPin(slotId, Str16ToStr8(newPin), Str16ToStr8(oldPin), response); in AlterPin()
Dcore_service_stub.cpp772 int32_t result = AlterPin(slotId, newPin, oldPin, response); in OnAlterPin()
/base/telephony/core_service/test/unittest/core_service_gtest/
Dzero_branch_test.cpp713 EXPECT_GT(mInner.AlterPin(0, "", "", response), TELEPHONY_ERR_SUCCESS);
805 …EXPECT_GT(simManager->AlterPin(0, password, password, mLockStatusResponse), TELEPHONY_ERR_SUCCESS);
806 …EXPECT_GT(simManager->AlterPin(INVALID_SLOTID, password, password, mLockStatusResponse), TELEPHONY…
997 …EXPECT_GT(simStateManager->AlterPin(0, password, password, mLockStatusResponse), TELEPHONY_ERR_SUC…
Dsim_test.cpp2430 …int32_t result = CoreServiceClient::GetInstance().AlterPin(SimTest::slotId_, newpin, oldpin, respo… in AlterPinTestFunc()
2465 …int32_t result = CoreServiceClient::GetInstance().AlterPin(SimTest::slotId1_, newpin, oldpin, resp… in AlterPinTestFunc1()
/base/telephony/core_service/frameworks/js/sim/src/
Dnapi_sim.cpp1051 int32_t errorCode = DelayedRefSingleton<CoreServiceClient>::GetInstance().AlterPin( in NativeAlterPin()
1075 napi_value AlterPin(napi_env env, napi_callback_info info) in AlterPin() function
2550 DECLARE_NAPI_FUNCTION("alterPin", AlterPin), in InitSimLockInterface()
/base/telephony/core_service/services/sim/test/
Dtest.cpp918 …g_telephonyService->AlterPin(SLOT_ID, Str8ToStr16(newPin.c_str()), Str8ToStr16(oldPin.c_str()), re… in TestAlterPin()