Home
last modified time | relevance | path

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

/ohos5.0/base/telephony/core_service/test/fuzztest/unlockpin_fuzzer/
H A Dunlockpin_fuzzer.cpp138 void AlterPin2(const uint8_t *data, size_t size) in AlterPin2() function
253 AlterPin2(data, size); in DoSomethingInterestingWithMyAPI()
/ohos5.0/base/telephony/core_service/services/sim/include/
H A Dsim_state_manager.h49 int32_t AlterPin2(
H A Dsim_state_handle.h128 void AlterPin2(int32_t slotId, const std::string &newPin2, const std::string &oldPin2);
H A Dsim_manager.h63 int32_t AlterPin2(
/ohos5.0/base/telephony/core_service/services/sim/src/
H A Dsim_state_manager.cpp398 int32_t SimStateManager::AlterPin2( in AlterPin2() function in OHOS::Telephony::SimStateManager
408 simStateHandle_->AlterPin2(slotId, newPin2, oldPin2); in AlterPin2()
H A Dsim_manager.cpp260 int32_t SimManager::AlterPin2( in AlterPin2() function in OHOS::Telephony::SimManager
267 return simStateManager_[slotId]->AlterPin2(slotId, newPin2, oldPin2, response); in AlterPin2()
H A Dsim_state_handle.cpp256 void SimStateHandle::AlterPin2(int32_t slotId, const std::string &newPin2, const std::string &oldPi… in AlterPin2() function in OHOS::Telephony::SimStateHandle
/ohos5.0/base/telephony/core_service/test/unittest/core_service_gtest/
H A Dsim_core_service_test.cpp67 …EXPECT_NE(mCoreService->AlterPin2(0, testU16Str, testU16Str, mLockStatusResponse), TELEPHONY_ERR_S…
214 …EXPECT_NE(mCoreService->AlterPin2(0, testU16Str, testU16Str, mLockStatusResponse), TELEPHONY_ERR_S…
H A Dsim_test_util.cpp364 …int32_t result = CoreServiceClient::GetInstance().AlterPin2(SimTest::slotId_, newpin2, oldpin2, re… in AlterPin2TestFunc()
374 …int32_t result = CoreServiceClient::GetInstance().AlterPin2(SimTest::slotId1_, newpin2, oldpin2, r… in AlterPin2TestFunc1()
H A Dzero_branch_test.cpp1095 EXPECT_GT(mInner.AlterPin2(0, "", "", response), TELEPHONY_ERR_SUCCESS);
1668 …EXPECT_GT(simManager->AlterPin2(0, password, password, mLockStatusResponse), TELEPHONY_ERR_SUCCESS…
1669 …EXPECT_GT(simManager->AlterPin2(INVALID_SLOTID, password, password, mLockStatusResponse), TELEPHON…
1714 …EXPECT_GT(simStateManager->AlterPin2(0, password, password, mLockStatusResponse), TELEPHONY_ERR_SU…
H A Dzero_branch_test_sim_ril.cpp721 …EXPECT_GT(simStateManager->AlterPin2(0, password, password, mLockStatusResponse), TELEPHONY_ERR_SU…
/ohos5.0/base/telephony/core_service/interfaces/innerkits/include/
H A Di_sim_manager.h49 virtual int32_t AlterPin2(
H A Dcore_service_client.h508 int32_t AlterPin2(
H A Di_core_service.h66 virtual int32_t AlterPin2(
H A Dcore_service_proxy.h95 …int32_t AlterPin2(const int32_t slotId, const std::u16string &newPin2, const std::u16string &oldPi…
H A Dcore_manager_inner.h262 int32_t AlterPin2(
/ohos5.0/base/telephony/cellular_call/services/common/src/
H A Dsupplement_request_cs.cpp235 int32_t result = CoreManagerInner::GetInstance().AlterPin2(slotId, newPin2, oldPin2, response); in AlterPin2Password()
/ohos5.0/base/telephony/core_service/frameworks/native/src/
H A Dcore_service_client.cpp617 int32_t CoreServiceClient::AlterPin2( in AlterPin2() function in OHOS::Telephony::CoreServiceClient
625 return proxy->AlterPin2(slotId, newPin2, oldPin2, response); in AlterPin2()
H A Dcore_manager_inner.cpp2308 int32_t CoreManagerInner::AlterPin2( in AlterPin2() function in OHOS::Telephony::CoreManagerInner
2315 return simManager_->AlterPin2(slotId, newPin2, oldPin2, response); in AlterPin2()
H A Dcore_service_proxy.cpp1713 int32_t CoreServiceProxy::AlterPin2( in AlterPin2() function in OHOS::Telephony::CoreServiceProxy
/ohos5.0/base/telephony/core_service/services/core/include/
H A Dcore_service.h131 int32_t AlterPin2(int32_t slotId, const std::u16string &newPin2, const std::u16string &oldPin2,
/ohos5.0/base/telephony/core_service/services/core/src/
H A Dcore_service.cpp921 int32_t CoreService::AlterPin2( in AlterPin2() function in OHOS::Telephony::CoreService
938 return simManager_->AlterPin2(slotId, Str16ToStr8(newPin2), Str16ToStr8(oldPin2), response); in AlterPin2()
H A Dcore_service_stub.cpp1140 int32_t result = AlterPin2(slotId, newPin2, oldPin2, response); in OnAlterPin2()
/ohos5.0/base/telephony/core_service/frameworks/js/sim/src/
H A Dnapi_sim.cpp2015 …int32_t errorCode = DelayedRefSingleton<CoreServiceClient>::GetInstance().AlterPin2(pinContext->as… in NativeAlterPin2()
2038 napi_value AlterPin2(napi_env env, napi_callback_info info) in AlterPin2() function
3112 DECLARE_NAPI_FUNCTION("alterPin2", AlterPin2), in InitSimLockInterface()
/ohos5.0/base/telephony/core_service/services/sim/test/
H A Dtest.cpp1116 …g_telephonyService->AlterPin2(testSlot, Str8ToStr16(newPin2.c_str()), Str8ToStr16(oldPin2.c_str())… in TestAlterPin2()