/base/telephony/cellular_call/services/connection/include/ |
D | supplement_request.h | 190 int32_t AlterPinPassword(int32_t slotId, std::string newPin, std::string oldPin);
|
/base/telephony/core_service/services/sim/include/ |
D | sim_state_manager.h | 40 …int32_t slotId, const std::string &newPin, const std::string &oldPin, LockStatusResponse &response…
|
D | sim_state_handle.h | 111 void AlterPin(int32_t slotId, const std::string &newPin, const std::string &oldPin);
|
D | sim_manager.h | 49 …int32_t slotId, const std::string &newPin, const std::string &oldPin, LockStatusResponse &response…
|
/base/telephony/core_service/interfaces/kits/js/ |
D | @ohos.telephony.sim.d.ts | 593 …function alterPin(slotId: number, newPin: string, oldPin: string, callback: AsyncCallback<LockStat… 594 function alterPin(slotId: number, newPin: string, oldPin: string): Promise<LockStatusResponse>;
|
/base/telephony/cellular_call/services/connection/src/ |
D | supplement_request.cpp | 274 int32_t SupplementRequest::AlterPinPassword(int32_t slotId, std::string newPin, std::string oldPin) in AlterPinPassword() argument 277 int32_t result = CoreManagerInner::GetInstance().AlterPin(slotId, newPin, oldPin, response); in AlterPinPassword()
|
/base/telephony/core_service/services/sim/src/ |
D | sim_state_manager.cpp | 184 …int32_t slotId, const std::string &newPin, const std::string &oldPin, LockStatusResponse &response) in AlterPin() argument 193 simStateHandle_->AlterPin(slotId, newPin, oldPin); in AlterPin()
|
D | sim_state_handle.cpp | 118 void SimStateHandle::AlterPin(int32_t slotId, const std::string &newPin, const std::string &oldPin) in AlterPin() argument 125 simPinPassword.oldPassword = oldPin; in AlterPin()
|
D | sim_manager.cpp | 208 …int32_t slotId, const std::string &newPin, const std::string &oldPin, LockStatusResponse &response) in AlterPin() argument 214 return simStateManager_[slotId]->AlterPin(slotId, newPin, oldPin, response); in AlterPin()
|
/base/telephony/core_service/services/sim/test/ |
D | test.cpp | 903 std::string oldPin = " "; in TestAlterPin() local 908 std::cin >> oldPin; in TestAlterPin() 909 size = oldPin.size(); in TestAlterPin() 917 std::cout << "Unlock pin: oldPin = " << oldPin << " newPin = " << newPin << endl; in TestAlterPin() 918 …g_telephonyService->AlterPin(SLOT_ID, Str8ToStr16(newPin.c_str()), Str8ToStr16(oldPin.c_str()), re… in TestAlterPin()
|
/base/telephony/core_service/interfaces/innerkits/include/ |
D | i_sim_manager.h | 41 …int32_t slotId, const std::string &newPin, const std::string &oldPin, LockStatusResponse &response…
|
D | core_service_client.h | 82 …int32_t slotId, const std::u16string &newPin, const std::u16string &oldPin, LockStatusResponse &re…
|
D | i_core_service.h | 57 …int32_t slotId, const std::u16string &newPin, const std::u16string &oldPin, LockStatusResponse &re…
|
D | core_service_proxy.h | 80 … int32_t AlterPin(const int32_t slotId, const std::u16string &newPin, const std::u16string &oldPin,
|
D | core_manager_inner.h | 239 …int32_t slotId, const std::string &newPin, const std::string &oldPin, LockStatusResponse &response…
|
/base/telephony/core_service/services/core/src/ |
D | core_service.cpp | 673 …const int slotId, const std::u16string &newPin, const std::u16string &oldPin, LockStatusResponse &… in AlterPin() argument 680 … static_cast<unsigned long>(newPin.length()), static_cast<unsigned long>(oldPin.length()), slotId); in AlterPin() 685 return simManager_->AlterPin(slotId, Str16ToStr8(newPin), Str16ToStr8(oldPin), response); in AlterPin()
|
D | core_service_stub.cpp | 771 std::u16string oldPin = data.ReadString16(); in OnAlterPin() local 772 int32_t result = AlterPin(slotId, newPin, oldPin, response); in OnAlterPin()
|
/base/telephony/core_service/services/core/include/ |
D | core_service.h | 112 int32_t AlterPin(int32_t slotId, const std::u16string &newPin, const std::u16string &oldPin,
|
/base/telephony/core_service/frameworks/native/src/ |
D | core_service_client.cpp | 525 …int32_t slotId, const std::u16string &newPin, const std::u16string &oldPin, LockStatusResponse &re… in AlterPin() argument 532 return proxy->AlterPin(slotId, newPin, oldPin, response); in AlterPin()
|
D | core_manager_inner.cpp | 2045 …int32_t slotId, const std::string &newPin, const std::string &oldPin, LockStatusResponse &response) in AlterPin() argument 2051 return simManager_->AlterPin(slotId, newPin, oldPin, response); in AlterPin()
|
D | core_service_proxy.cpp | 1433 …const int32_t slotId, const std::u16string &newPin, const std::u16string &oldPin, LockStatusRespon… in AlterPin() argument 1444 data.WriteString16(oldPin); in AlterPin()
|
/base/telephony/cellular_call/services/control/src/ |
D | cellular_call_supplement.cpp | 850 std::string oldPin = mmiData.serviceInfoA; in AlterPinPassword() local 856 supplementRequest_.AlterPinPassword(slotId, newPin, oldPin); in AlterPinPassword()
|