Home | History | Annotate | Download | only in phone

Lines Matching refs:puk

885     public boolean supplyPuk(String puk, String pin) {
886 return supplyPukForSubscriber(getDefaultSubscription(), puk, pin);
889 public boolean supplyPukForSubscriber(long subId, String puk, String pin) {
890 int [] resultArray = supplyPukReportResultForSubscriber(subId, puk, pin);
907 public int[] supplyPukReportResult(String puk, String pin) {
908 return supplyPukReportResultForSubscriber(getDefaultSubscription(), puk, pin);
911 public int[] supplyPukReportResultForSubscriber(long subId, String puk, String pin) {
915 return checkSimPuk.unlockSim(puk, pin);
977 * Use PIN or PUK to unlock SIM card
979 * If PUK is null, unlock SIM card with PIN
981 * If PUK is not null, unlock SIM card with PUK and set PIN code
983 synchronized int[] unlockSim(String puk, String pin) {
994 if (puk == null) {
997 mSimCard.supplyPuk(puk, pin, callback);