/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/ |
D | LockscreenFrpTest.java | 51 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()
|
D | BaseLockSettingsServiceTests.java | 317 protected LockscreenCredential newPin(String pin) { in newPin() method in BaseLockSettingsServiceTests
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/ |
D | SipCommandInterface.java | 69 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/ |
D | ImsPhoneCommandInterface.java | 70 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/ |
D | IccCard.java | 116 public void supplyPuk(String puk, String newPin, Message onComplete) { in supplyPuk() argument
|
D | CommandsInterface.java | 756 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
|
D | RIL.java | 767 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/ |
D | SimulatedCommandsVerifier.java | 617 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
|
D | SimulatedCommands.java | 289 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()
|
D | RILTest.java | 385 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/ |
D | UsimDataDownloadCommands.java.broken | 173 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/ |
D | UiccCardApplication.java | 748 public void supplyPuk (String puk, String newPin, Message onComplete) { in supplyPuk() argument 750 mCi.supplyIccPukForApp(puk, newPin, mAid, in supplyPuk()
|
D | UiccProfile.java | 878 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/ |
D | UserManager.java | 4588 public boolean setRestrictionsChallenge(String newPin) { in setRestrictionsChallenge() argument
|
/frameworks/base/telephony/java/android/telephony/ |
D | TelephonyManager.java | 14563 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()
|