Searched refs:storedPin (Results 1 – 1 of 1) sorted by relevance
233 StoredPin storedPin = new StoredPin(); in storePin() local234 storedPin.iccid = iccid; in storePin()235 storedPin.pin = pin; in storePin()236 storedPin.slotId = slotId; in storePin()237 storedPin.status = PinStatus.AVAILABLE; in storePin()239 savePinInformation(slotId, storedPin); in storePin()265 StoredPin storedPin = loadPinInformation(slotId); in getPin() local266 if (storedPin != null) { in getPin()267 if (!storedPin.iccid.equals(iccid)) { in getPin()274 } else if (storedPin.status == PinStatus.VERIFICATION_READY) { in getPin()[all …]