Home
last modified time | relevance | path

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

/base/telephony/cellular_call/services/connection/include/
Dsupplement_request_cs.h177 int32_t AlterPin2Password(int32_t slotId, std::string newPin2, std::string oldPin2);
/base/telephony/core_service/services/sim/include/
Dsim_state_manager.h48 …int32_t slotId, const std::string &newPin2, const std::string &oldPin2, LockStatusResponse &respon…
Dsim_state_handle.h123 void AlterPin2(int32_t slotId, const std::string &newPin2, const std::string &oldPin2);
Dsim_manager.h57 …int32_t slotId, const std::string &newPin2, const std::string &oldPin2, LockStatusResponse &respon…
/base/telephony/core_service/interfaces/kits/js/
D@ohos.telephony.sim.d.ts1548 …function alterPin2(slotId: number, newPin2: string, oldPin2: string, callback: AsyncCallback<LockS…
1573 function alterPin2(slotId: number, newPin2: string, oldPin2: string): Promise<LockStatusResponse>;
/base/telephony/cellular_call/services/connection/src/
Dsupplement_request_cs.cpp223 …_t SupplementRequestCs::AlterPin2Password(int32_t slotId, std::string newPin2, std::string oldPin2) in AlterPin2Password() argument
227 int32_t result = CoreManagerInner::GetInstance().AlterPin2(slotId, newPin2, oldPin2, response); in AlterPin2Password()
/base/telephony/core_service/services/sim/src/
Dsim_state_manager.cpp370 …int32_t slotId, const std::string &newPin2, const std::string &oldPin2, LockStatusResponse &respon… in AlterPin2() argument
379 simStateHandle_->AlterPin2(slotId, newPin2, oldPin2); in AlterPin2()
Dsim_state_handle.cpp159 …d SimStateHandle::AlterPin2(int32_t slotId, const std::string &newPin2, const std::string &oldPin2) in AlterPin2() argument
166 simPin2Password.oldPassword = oldPin2; in AlterPin2()
Dsim_manager.cpp247 …int32_t slotId, const std::string &newPin2, const std::string &oldPin2, LockStatusResponse &respon… in AlterPin2() argument
253 return simStateManager_[slotId]->AlterPin2(slotId, newPin2, oldPin2, response); in AlterPin2()
/base/telephony/core_service/services/sim/test/
Dtest.cpp1084 std::string oldPin2 = " "; in TestAlterPin2() local
1092 std::cin >> oldPin2; in TestAlterPin2()
1093 size = oldPin2.size(); in TestAlterPin2()
1101 std::cout << "Unlock pin2: oldPin2 = " << oldPin2 << " newPin2 = " << newPin2 << endl; in TestAlterPin2()
1102 …g_telephonyService->AlterPin2(testSlot, Str8ToStr16(newPin2.c_str()), Str8ToStr16(oldPin2.c_str())… in TestAlterPin2()
/base/telephony/core_service/interfaces/innerkits/include/
Di_sim_manager.h49 …int32_t slotId, const std::string &newPin2, const std::string &oldPin2, LockStatusResponse &respon…
Di_core_service.h63 …int32_t slotId, const std::u16string &newPin2, const std::u16string &oldPin2, LockStatusResponse &…
Dcore_service_client.h475 …int32_t slotId, const std::u16string &newPin2, const std::u16string &oldPin2, LockStatusResponse &…
Dcore_service_proxy.h89 …t32_t AlterPin2(const int32_t slotId, const std::u16string &newPin2, const std::u16string &oldPin2,
Dcore_manager_inner.h252 …int32_t slotId, const std::string &newPin2, const std::string &oldPin2, LockStatusResponse &respon…
/base/telephony/core_service/services/core/src/
Dcore_service.cpp843 …const int slotId, const std::u16string &newPin2, const std::u16string &oldPin2, LockStatusResponse… in AlterPin2() argument
854 …static_cast<unsigned long>(newPin2.length()), static_cast<unsigned long>(oldPin2.length()), slotId… in AlterPin2()
859 return simManager_->AlterPin2(slotId, Str16ToStr8(newPin2), Str16ToStr8(oldPin2), response); in AlterPin2()
Dcore_service_stub.cpp906 std::u16string oldPin2 = data.ReadString16(); in OnAlterPin2() local
907 int32_t result = AlterPin2(slotId, newPin2, oldPin2, response); in OnAlterPin2()
/base/telephony/core_service/services/core/include/
Dcore_service.h122 int32_t AlterPin2(int32_t slotId, const std::u16string &newPin2, const std::u16string &oldPin2,
/base/telephony/core_service/frameworks/native/src/
Dcore_service_client.cpp577 …int32_t slotId, const std::u16string &newPin2, const std::u16string &oldPin2, LockStatusResponse &… in AlterPin2() argument
584 return proxy->AlterPin2(slotId, newPin2, oldPin2, response); in AlterPin2()
Dcore_manager_inner.cpp2191 …int32_t slotId, const std::string &newPin2, const std::string &oldPin2, LockStatusResponse &respon… in AlterPin2() argument
2197 return simManager_->AlterPin2(slotId, newPin2, oldPin2, response); in AlterPin2()
Dcore_service_proxy.cpp1590 …const int32_t slotId, const std::u16string &newPin2, const std::u16string &oldPin2, LockStatusResp… in AlterPin2() argument
1601 data.WriteString16(oldPin2); in AlterPin2()
/base/telephony/cellular_call/services/control/src/
Dcellular_call_supplement.cpp1506 std::string oldPin2 = mmiData.serviceInfoA; in AlterPin2Password() local
1513 result = supplementRequestCs_.AlterPin2Password(slotId, newPin2, oldPin2); in AlterPin2Password()