/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
D | ImsPhoneCommandInterface.java | 65 public void supplyIccPuk(String puk, String newPin, Message result) { in supplyIccPuk() argument 77 public void changeIccPin(String oldPin, String newPin, Message result) { in changeIccPin() argument 541 public void supplyIccPukForApp(String puk, String newPin, String aid, Message response) { in supplyIccPukForApp() argument 553 public void changeIccPinForApp(String oldPin, String newPin, String aidPtr, Message response) { in changeIccPinForApp() argument
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/ |
D | SipCommandInterface.java | 64 public void supplyIccPuk(String puk, String newPin, Message result) { in supplyIccPuk() argument 76 public void changeIccPin(String oldPin, String newPin, Message result) { in changeIccPin() argument 542 public void supplyIccPukForApp(String puk, String newPin, String aid, Message response) { in supplyIccPukForApp() argument 554 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 | 114 public void supplyPuk(String puk, String newPin, Message onComplete) { in supplyPuk() argument
|
D | CommandsInterface.java | 708 void supplyIccPuk(String puk, String newPin, Message result); in supplyIccPuk() argument 726 void supplyIccPukForApp(String puk, String newPin, String aid, Message result); in supplyIccPukForApp() argument 809 void changeIccPin(String oldPin, String newPin, Message result); in changeIccPin() argument 810 void changeIccPinForApp(String oldPin, String newPin, String aidPtr, Message result); in changeIccPinForApp() argument
|
D | RIL.java | 719 public void supplyIccPuk(String puk, String newPin, Message result) { in supplyIccPuk() argument 720 supplyIccPukForApp(puk, newPin, null, result); in supplyIccPuk() 724 public void supplyIccPukForApp(String puk, String newPin, String aid, Message result) { in supplyIccPukForApp() argument 738 convertNullToEmptyString(newPin), in supplyIccPukForApp() 802 public void changeIccPin(String oldPin, String newPin, Message result) { in changeIccPin() argument 803 changeIccPinForApp(oldPin, newPin, null, result); in changeIccPin() 807 public void changeIccPinForApp(String oldPin, String newPin, String aid, Message result) { in changeIccPinForApp() argument 815 + oldPin + " newPin = " + newPin + " aid = " + aid); in changeIccPinForApp() 821 convertNullToEmptyString(newPin), in changeIccPinForApp()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/ |
D | SimulatedCommandsVerifier.java | 600 public void supplyIccPuk(String puk, String newPin, Message result) { in supplyIccPuk() argument 605 public void supplyIccPukForApp(String puk, String newPin, String aid, Message result) { in supplyIccPukForApp() argument 630 public void changeIccPin(String oldPin, String newPin, Message result) { in changeIccPin() argument 635 public void changeIccPinForApp(String oldPin, String newPin, String aidPtr, Message result) { in changeIccPinForApp() argument
|
D | SimulatedCommands.java | 260 public void supplyIccPuk(String puk, String newPin, Message result) { in supplyIccPuk() argument 369 public void changeIccPin(String oldPin, String newPin, Message result) { in changeIccPin() argument 371 mPinCode = newPin; in changeIccPin() 1845 public void supplyIccPukForApp(String puk, String newPin, String aid, Message response) { in supplyIccPukForApp() argument 1860 public void changeIccPinForApp(String oldPin, String newPin, String aidPtr, Message response) { in changeIccPinForApp() argument 1861 SimulatedCommandsVerifier.getInstance().changeIccPinForApp(oldPin, newPin, aidPtr, in changeIccPinForApp() 1863 changeIccPin(oldPin, newPin, response); in changeIccPinForApp()
|
/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/tests/telephonytests/src/com/android/internal/telephony/ |
D | RILTest.java | 366 String newPin = "1314"; in testSupplyIccPukForApp() local 368 mRILUnderTest.supplyIccPukForApp(puk, newPin, aid, obtainMessage()); in testSupplyIccPukForApp() 370 .supplyIccPukForApp(mSerialNumberCaptor.capture(), eq(puk), eq(newPin), eq(aid)); in testSupplyIccPukForApp() 390 String newPin = "1314"; in testSupplyIccPuk2ForApp() local 392 mRILUnderTest.supplyIccPuk2ForApp(puk, newPin, aid, obtainMessage()); in testSupplyIccPuk2ForApp() 394 .supplyIccPuk2ForApp(mSerialNumberCaptor.capture(), eq(puk), eq(newPin), eq(aid)); in testSupplyIccPuk2ForApp() 403 String newPin = "1314"; in testChangeIccPinForApp() local 405 mRILUnderTest.changeIccPinForApp(oldPin, newPin, aid, obtainMessage()); in testChangeIccPinForApp() 407 mSerialNumberCaptor.capture(), eq(oldPin), eq(newPin), eq(aid)); in testChangeIccPinForApp()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
D | UiccCardApplication.java | 693 public void supplyPuk (String puk, String newPin, Message onComplete) { in supplyPuk() argument 695 mCi.supplyIccPukForApp(puk, newPin, mAid, in supplyPuk()
|
D | UiccProfile.java | 749 public void supplyPuk(String puk, String newPin, Message onComplete) { in supplyPuk() argument 752 mUiccApplication.supplyPuk(puk, newPin, onComplete); in supplyPuk()
|
/frameworks/base/core/java/android/os/ |
D | UserManager.java | 3089 public boolean setRestrictionsChallenge(String newPin) { in setRestrictionsChallenge() argument
|