/base/telephony/cellular_call/services/connection/include/ |
D | supplement_request_cs.h | 157 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 | 115 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 | 1352 …function alterPin(slotId: number, newPin: string, oldPin: string, callback: AsyncCallback<LockStat… 1377 function alterPin(slotId: number, newPin: string, oldPin: string): Promise<LockStatusResponse>;
|
/base/telephony/cellular_call/services/connection/src/ |
D | supplement_request_cs.cpp | 177 …t32_t SupplementRequestCs::AlterPinPassword(int32_t slotId, std::string newPin, std::string oldPin) in AlterPinPassword() argument 181 int32_t result = CoreManagerInner::GetInstance().AlterPin(slotId, newPin, oldPin, response); in AlterPinPassword()
|
/base/telephony/core_service/services/sim/src/ |
D | sim_state_manager.cpp | 185 …int32_t slotId, const std::string &newPin, const std::string &oldPin, LockStatusResponse &response) in AlterPin() argument 194 simStateHandle_->AlterPin(slotId, newPin, oldPin); in AlterPin()
|
D | sim_state_handle.cpp | 117 void SimStateHandle::AlterPin(int32_t slotId, const std::string &newPin, const std::string &oldPin) in AlterPin() argument 124 simPinPassword.oldPassword = oldPin; in AlterPin()
|
D | sim_manager.cpp | 191 …int32_t slotId, const std::string &newPin, const std::string &oldPin, LockStatusResponse &response) in AlterPin() argument 197 return simStateManager_[slotId]->AlterPin(slotId, newPin, oldPin, response); in AlterPin()
|
/base/telephony/core_service/services/sim/test/ |
D | test.cpp | 1010 std::string oldPin = " "; in TestAlterPin() local 1018 std::cin >> oldPin; in TestAlterPin() 1019 size = oldPin.size(); in TestAlterPin() 1027 std::cout << "Unlock pin: oldPin = " << oldPin << " newPin = " << newPin << endl; in TestAlterPin() 1028 …g_telephonyService->AlterPin(testSlot, Str8ToStr16(newPin.c_str()), Str8ToStr16(oldPin.c_str()), r… 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 | i_core_service.h | 58 …int32_t slotId, const std::u16string &newPin, const std::u16string &oldPin, LockStatusResponse &re…
|
D | core_service_client.h | 441 …int32_t slotId, const std::u16string &newPin, const std::u16string &oldPin, LockStatusResponse &re…
|
D | core_service_proxy.h | 84 … int32_t AlterPin(const int32_t slotId, const std::u16string &newPin, const std::u16string &oldPin,
|
D | core_manager_inner.h | 244 …int32_t slotId, const std::string &newPin, const std::string &oldPin, LockStatusResponse &response…
|
/base/telephony/core_service/services/core/src/ |
D | core_service.cpp | 784 …const int slotId, const std::u16string &newPin, const std::u16string &oldPin, LockStatusResponse &… in AlterPin() argument 795 … static_cast<unsigned long>(newPin.length()), static_cast<unsigned long>(oldPin.length()), slotId); in AlterPin() 800 return simManager_->AlterPin(slotId, Str16ToStr8(newPin), Str16ToStr8(oldPin), response); in AlterPin()
|
D | core_service_stub.cpp | 844 std::u16string oldPin = data.ReadString16(); in OnAlterPin() local 845 int32_t result = AlterPin(slotId, newPin, oldPin, response); in OnAlterPin()
|
/base/telephony/core_service/services/core/include/ |
D | core_service.h | 114 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 | 545 …int32_t slotId, const std::u16string &newPin, const std::u16string &oldPin, LockStatusResponse &re… in AlterPin() argument 552 return proxy->AlterPin(slotId, newPin, oldPin, response); in AlterPin()
|
D | core_manager_inner.cpp | 2135 …int32_t slotId, const std::string &newPin, const std::string &oldPin, LockStatusResponse &response) in AlterPin() argument 2141 return simManager_->AlterPin(slotId, newPin, oldPin, response); in AlterPin()
|
D | core_service_proxy.cpp | 1493 …const int32_t slotId, const std::u16string &newPin, const std::u16string &oldPin, LockStatusRespon… in AlterPin() argument 1504 data.WriteString16(oldPin); in AlterPin()
|
/base/telephony/cellular_call/services/control/src/ |
D | cellular_call_supplement.cpp | 1467 std::string oldPin = mmiData.serviceInfoA; in AlterPinPassword() local 1474 result = supplementRequestCs_.AlterPinPassword(slotId, newPin, oldPin); in AlterPinPassword()
|