Home
last modified time | relevance | path

Searched refs:newPin (Results 1 – 15 of 15) sorted by relevance

/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/
DLockscreenFrpTest.java51 mService.setLockCredential(newPin("1234"), nonePassword(), PRIMARY_USER_ID); in testFrpCredential_setPin()
55 mService.verifyCredential(newPin("1234"), USER_FRP, 0 /* flags */) in testFrpCredential_setPin()
101 mService.setLockCredential(newPin("1234"), nonePassword(), PRIMARY_USER_ID); in testFrpCredential_cannotVerifyAfterProvsioning()
105 mService.verifyCredential(newPin("1234"), USER_FRP, 0 /* flags */) in testFrpCredential_cannotVerifyAfterProvsioning()
111 mService.setLockCredential(newPin("1234"), nonePassword(), PRIMARY_USER_ID); in testFrpCredential_legacyPinTypePersistentData()
121 mService.verifyCredential(newPin("1234"), USER_FRP, 0 /* flags */) in testFrpCredential_legacyPinTypePersistentData()
138 mService.verifyCredential(newPin("1234"), USER_FRP, 0 /* flags */) in testFrpCredential_legacyPasswordTypePersistentData()
DBaseLockSettingsServiceTests.java317 protected LockscreenCredential newPin(String pin) { in newPin() method in BaseLockSettingsServiceTests
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
DSipCommandInterface.java69 public void supplyIccPuk(String puk, String newPin, Message result) { in supplyIccPuk() argument
81 public void changeIccPin(String oldPin, String newPin, Message result) { in changeIccPin() argument
565 public void supplyIccPukForApp(String puk, String newPin, String aid, Message response) { in supplyIccPukForApp() argument
577 public void changeIccPinForApp(String oldPin, String newPin, String aidPtr, Message response) { in changeIccPinForApp() argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneCommandInterface.java70 public void supplyIccPuk(String puk, String newPin, Message result) { in supplyIccPuk() argument
82 public void changeIccPin(String oldPin, String newPin, Message result) { in changeIccPin() argument
564 public void supplyIccPukForApp(String puk, String newPin, String aid, Message response) { in supplyIccPukForApp() argument
576 public void changeIccPinForApp(String oldPin, String newPin, String aidPtr, Message response) { in changeIccPinForApp() argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DIccCard.java116 public void supplyPuk(String puk, String newPin, Message onComplete) { in supplyPuk() argument
DCommandsInterface.java756 void supplyIccPuk(String puk, String newPin, Message result); in supplyIccPuk() argument
774 void supplyIccPukForApp(String puk, String newPin, String aid, Message result); in supplyIccPukForApp() argument
857 void changeIccPin(String oldPin, String newPin, Message result); in changeIccPin() argument
858 void changeIccPinForApp(String oldPin, String newPin, String aidPtr, Message result); in changeIccPinForApp() argument
DRIL.java767 public void supplyIccPuk(String puk, String newPin, Message result) { in supplyIccPuk() argument
768 supplyIccPukForApp(puk, newPin, null, result); in supplyIccPuk()
772 public void supplyIccPukForApp(String puk, String newPin, String aid, Message result) { in supplyIccPukForApp() argument
788 convertNullToEmptyString(newPin), in supplyIccPukForApp()
852 public void changeIccPin(String oldPin, String newPin, Message result) { in changeIccPin() argument
853 changeIccPinForApp(oldPin, newPin, null, result); in changeIccPin()
857 public void changeIccPinForApp(String oldPin, String newPin, String aid, Message result) { in changeIccPinForApp() argument
865 + oldPin + " newPin = " + newPin + " aid = " + aid); in changeIccPinForApp()
871 convertNullToEmptyString(newPin), in changeIccPinForApp()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DSimulatedCommandsVerifier.java617 public void supplyIccPuk(String puk, String newPin, Message result) { in supplyIccPuk() argument
622 public void supplyIccPukForApp(String puk, String newPin, String aid, Message result) { in supplyIccPukForApp() argument
647 public void changeIccPin(String oldPin, String newPin, Message result) { in changeIccPin() argument
652 public void changeIccPinForApp(String oldPin, String newPin, String aidPtr, Message result) { in changeIccPinForApp() argument
DSimulatedCommands.java289 public void supplyIccPuk(String puk, String newPin, Message result) { in supplyIccPuk() argument
398 public void changeIccPin(String oldPin, String newPin, Message result) { in changeIccPin() argument
400 mPinCode = newPin; in changeIccPin()
1929 public void supplyIccPukForApp(String puk, String newPin, String aid, Message response) { in supplyIccPukForApp() argument
1944 public void changeIccPinForApp(String oldPin, String newPin, String aidPtr, Message response) { in changeIccPinForApp() argument
1945 SimulatedCommandsVerifier.getInstance().changeIccPinForApp(oldPin, newPin, aidPtr, in changeIccPinForApp()
1947 changeIccPin(oldPin, newPin, response); in changeIccPinForApp()
DRILTest.java385 String newPin = "1314"; in testSupplyIccPukForApp() local
387 mRILUnderTest.supplyIccPukForApp(puk, newPin, aid, obtainMessage()); in testSupplyIccPukForApp()
389 .supplyIccPukForApp(mSerialNumberCaptor.capture(), eq(puk), eq(newPin), eq(aid)); in testSupplyIccPukForApp()
409 String newPin = "1314"; in testSupplyIccPuk2ForApp() local
411 mRILUnderTest.supplyIccPuk2ForApp(puk, newPin, aid, obtainMessage()); in testSupplyIccPuk2ForApp()
413 .supplyIccPuk2ForApp(mSerialNumberCaptor.capture(), eq(puk), eq(newPin), eq(aid)); in testSupplyIccPuk2ForApp()
422 String newPin = "1314"; in testChangeIccPinForApp() local
424 mRILUnderTest.changeIccPinForApp(oldPin, newPin, aid, obtainMessage()); in testChangeIccPinForApp()
426 mSerialNumberCaptor.capture(), eq(oldPin), eq(newPin), eq(aid)); in testChangeIccPinForApp()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
DUsimDataDownloadCommands.java.broken173 public void supplyIccPuk(String puk, String newPin, Message result) {
177 public void supplyIccPukForApp(String puk, String newPin, String aid, Message result) {
197 public void changeIccPin(String oldPin, String newPin, Message result) {
201 public void changeIccPinForApp(String oldPin, String newPin, String aidPtr, Message result) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DUiccCardApplication.java748 public void supplyPuk (String puk, String newPin, Message onComplete) { in supplyPuk() argument
750 mCi.supplyIccPukForApp(puk, newPin, mAid, in supplyPuk()
DUiccProfile.java878 public void supplyPuk(String puk, String newPin, Message onComplete) { in supplyPuk() argument
881 mUiccApplication.supplyPuk(puk, newPin, onComplete); in supplyPuk()
/frameworks/base/core/java/android/os/
DUserManager.java4588 public boolean setRestrictionsChallenge(String newPin) { in setRestrictionsChallenge() argument
/frameworks/base/telephony/java/android/telephony/
DTelephonyManager.java14563 public PinResult changeIccLockPin(@NonNull String oldPin, @NonNull String newPin) { in changeIccLockPin() argument
14565 checkNotNull(newPin, "changeIccLockPin newPin can't be null."); in changeIccLockPin()
14569 int result = telephony.changeIccLockPassword(getSubId(), oldPin, newPin); in changeIccLockPin()