/base/telephony/cellular_call/services/common/include/ |
H A D | supplement_request_cs.h | 167 int32_t UnlockPuk(int32_t slotId, std::string newPin, std::string puk);
|
/base/telephony/core_service/services/sim/include/ |
H A D | sim_state_manager.h | 42 int32_t UnlockPuk(int32_t slotId, const std::string &newPin, const std::string &puk, LockStatusResponse &response);
|
H A D | sim_state_handle.h | 121 void UnlockPuk(int32_t slotId, const std::string &newPin, const std::string &puk);
|
/base/telephony/ril_adapter/interfaces/innerkits/include/ |
H A D | hril_vendor_sim_defs.h | 369 void (*UnlockPuk)(const ReqDataInfo *requestInfo, const char *puk, const char *pin); member
|
/base/telephony/core_service/test/fuzztest/unlockpin_fuzzer/ |
H A D | unlockpin_fuzzer.cpp | 65 void UnlockPuk(const uint8_t *data, size_t size) in UnlockPuk() function 249 UnlockPuk(data, size); in DoSomethingInterestingWithMyAPI()
|
/base/telephony/cellular_call/services/utils/include/ |
H A D | cellular_call_supplement.h | 259 void UnlockPuk(int32_t slotId, const MMIData &mmiData);
|
/base/telephony/cellular_call/services/common/src/ |
H A D | supplement_request_cs.cpp | 208 int32_t SupplementRequestCs::UnlockPuk(int32_t slotId, std::string newPin, std::string puk) in UnlockPuk() function in OHOS::Telephony::SupplementRequestCs 212 int32_t result = CoreManagerInner::GetInstance().UnlockPuk(slotId, newPin, puk, response); in UnlockPuk()
|
/base/telephony/core_service/services/sim/src/ |
H A D | sim_state_manager.cpp | 209 int32_t SimStateManager::UnlockPuk( in UnlockPuk() function in OHOS::Telephony::SimStateManager 217 TELEPHONY_LOGD("SimStateManager::UnlockPuk slotId = %{public}d", slotId); in UnlockPuk() 219 simStateHandle_->UnlockPuk(slotId, newPin, puk); in UnlockPuk() 221 TELEPHONY_LOGI("UnlockPuk::wait(), response = false"); in UnlockPuk()
|
H A D | sim_state_handle.cpp | 192 void SimStateHandle::UnlockPuk(int32_t slotId, const std::string &newPin, const std::string &puk) in UnlockPuk() function in OHOS::Telephony::SimStateHandle 206 telRilManager->UnlockPuk(slotId, puk, newPin, event); in UnlockPuk()
|
/base/telephony/core_service/test/unittest/core_service_gtest/ |
H A D | sim_core_service_test.cpp | 63 EXPECT_NE(mCoreService->UnlockPuk(0, testU16Str, testU16Str, mLockStatusResponse), TELEPHONY_ERR_SUCCESS); in HWTEST_F() 210 EXPECT_NE(mCoreService->UnlockPuk(0, testU16Str, testU16Str, mLockStatusResponse), TELEPHONY_ERR_SUCCESS); in HWTEST_F()
|
H A D | sim_test_util.cpp | 290 int32_t result = CoreServiceClient::GetInstance().UnlockPuk(SimTest::slotId_, pin, puk, response); in UnlockPukTestFunc() 300 int32_t result = CoreServiceClient::GetInstance().UnlockPuk(SimTest::slotId1_, pin, puk, response); in UnlockPukTestFunc1()
|
/base/telephony/core_service/services/tel_ril/include/ |
H A D | tel_ril_sim.h | 49 int32_t UnlockPuk(std::string puk, std::string pin, const AppExecFwk::InnerEvent::Pointer &response);
|
/base/telephony/cellular_data/test/mock/ |
H A D | mock_sim_manager.h | 115 MOCK_METHOD4(UnlockPuk, int32_t(int32_t, const std::string &, const std::string &, LockStatusResponse &));
|
H A D | mock_core_service.h | 58 MOCK_METHOD(int32_t, UnlockPuk,
|
/base/telephony/ril_adapter/services/vendor/src/ |
H A D | vendor_adapter.c | 106 .UnlockPuk = ReqUnlockPuk,
|
/base/telephony/cellular_call/services/utils/src/ |
H A D | mmi_code_utils.cpp | 146 supplement->UnlockPuk(slotId, mmiData); in InitAdditionalMmiCodeFunc()
|
/base/telephony/core_service/services/tel_ril/src/ |
H A D | tel_ril_sim.cpp | 373 int32_t TelRilSim::UnlockPuk(std::string puk, std::string pin, const AppExecFwk::InnerEvent::Pointer &response) in UnlockPuk() function in OHOS::Telephony::TelRilSim 375 return Request(TELEPHONY_LOG_FUNC_NAME, response, &HDI::Ril::V1_1::IRil::UnlockPuk, puk, pin); in UnlockPuk()
|
/base/telephony/ril_adapter/test/unittest/ril_adapter_gtest/ |
H A D | ril_sim_test.cpp | 806 int32_t ret = g_rilInterface->UnlockPuk(SLOTID_1, RilTestUtil::GetSerialId(), puk, pin); in HWTEST_F() 827 int32_t ret = g_rilInterface->UnlockPuk(SLOTID_2, RilTestUtil::GetSerialId(), puk, pin); in HWTEST_F()
|
/base/telephony/cellular_call/test/unittest/imstest/ |
H A D | zero_branch_test.cpp | 302 callSup.UnlockPuk(SIM1_SLOTID, mmiDataPin); in HWTEST_F() 307 callSup.UnlockPuk(SIM1_SLOTID, mmiDataPin); in HWTEST_F() 312 callSup.UnlockPuk(SIM1_SLOTID, mmiDataPin); in HWTEST_F() 643 callSup.UnlockPuk(SIM1_SLOTID, mmiDataAct); in HWTEST_F()
|
/base/telephony/core_service/test/fuzztest/sendsmsmoremode_fuzzer/ |
H A D | sendsmsmoremode_fuzzer.cpp | 256 telRilSim->UnlockPuk(puk, pin, result); in GetSimStatus()
|
/base/telephony/core_service/interfaces/innerkits/include/ |
H A D | core_service_client.h | 462 int32_t UnlockPuk(
|
H A D | i_sim_manager.h | 51 virtual int32_t UnlockPuk(
|
/base/telephony/ril_adapter/services/hril/include/ |
H A D | hril_sim.h | 41 int32_t UnlockPuk(int32_t serialId, const std::string &puk, const std::string &pin);
|
/base/telephony/core_service/frameworks/native/src/ |
H A D | core_service_client.cpp | 575 int32_t CoreServiceClient::UnlockPuk( in UnlockPuk() function in OHOS::Telephony::CoreServiceClient 583 return proxy->UnlockPuk(slotId, newPin, puk, response); in UnlockPuk()
|
/base/telephony/cellular_call/test/unittest/cstest/ |
H A D | cs2_test.cpp | 874 supplement.UnlockPuk(slotId, mmiData); in HWTEST_F() 882 supplement.UnlockPuk(slotId, mmiData); in HWTEST_F() 887 supplement.UnlockPuk(slotId, mmiData); in HWTEST_F()
|