Home | History | Annotate | Download | only in phone

Lines Matching refs:pin

876     public boolean supplyPin(String pin) {
877 return supplyPinForSubscriber(getDefaultSubscription(), pin);
880 public boolean supplyPinForSubscriber(long subId, String pin) {
881 int [] resultArray = supplyPinReportResultForSubscriber(subId, pin);
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);
895 public int[] supplyPinReportResult(String pin) {
896 return supplyPinReportResultForSubscriber(getDefaultSubscription(), pin);
899 public int[] supplyPinReportResultForSubscriber(long subId, String pin) {
903 return checkSimPin.unlockSim(null, 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) {
995 mSimCard.supplyPin(pin, callback);
997 mSimCard.supplyPuk(puk, pin, callback);