Home
last modified time | relevance | path

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

/base/telephony/cellular_call/services/connection/include/
Dsupplement_request_cs.h157 int32_t AlterPinPassword(int32_t slotId, std::string newPin, std::string oldPin);
/base/telephony/core_service/services/sim/include/
Dsim_state_manager.h40 …int32_t slotId, const std::string &newPin, const std::string &oldPin, LockStatusResponse &response…
Dsim_state_handle.h115 void AlterPin(int32_t slotId, const std::string &newPin, const std::string &oldPin);
Dsim_manager.h49 …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.ts1352 …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/
Dsupplement_request_cs.cpp177 …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/
Dsim_state_manager.cpp185 …int32_t slotId, const std::string &newPin, const std::string &oldPin, LockStatusResponse &response) in AlterPin() argument
194 simStateHandle_->AlterPin(slotId, newPin, oldPin); in AlterPin()
Dsim_state_handle.cpp117 void SimStateHandle::AlterPin(int32_t slotId, const std::string &newPin, const std::string &oldPin) in AlterPin() argument
124 simPinPassword.oldPassword = oldPin; in AlterPin()
Dsim_manager.cpp191 …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/
Dtest.cpp1010 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/
Di_sim_manager.h41 …int32_t slotId, const std::string &newPin, const std::string &oldPin, LockStatusResponse &response…
Di_core_service.h58 …int32_t slotId, const std::u16string &newPin, const std::u16string &oldPin, LockStatusResponse &re…
Dcore_service_client.h441 …int32_t slotId, const std::u16string &newPin, const std::u16string &oldPin, LockStatusResponse &re…
Dcore_service_proxy.h84 … int32_t AlterPin(const int32_t slotId, const std::u16string &newPin, const std::u16string &oldPin,
Dcore_manager_inner.h244 …int32_t slotId, const std::string &newPin, const std::string &oldPin, LockStatusResponse &response…
/base/telephony/core_service/services/core/src/
Dcore_service.cpp784 …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()
Dcore_service_stub.cpp844 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/
Dcore_service.h114 int32_t AlterPin(int32_t slotId, const std::u16string &newPin, const std::u16string &oldPin,
/base/telephony/core_service/frameworks/native/src/
Dcore_service_client.cpp545 …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()
Dcore_manager_inner.cpp2135 …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()
Dcore_service_proxy.cpp1493 …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/
Dcellular_call_supplement.cpp1467 std::string oldPin = mmiData.serviceInfoA; in AlterPinPassword() local
1474 result = supplementRequestCs_.AlterPinPassword(slotId, newPin, oldPin); in AlterPinPassword()