Home
last modified time | relevance | path

Searched refs:storedPin (Results 1 – 1 of 1) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DPinStorage.java233 StoredPin storedPin = new StoredPin(); in storePin() local
234 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() local
266 if (storedPin != null) { in getPin()
267 if (!storedPin.iccid.equals(iccid)) { in getPin()
274 } else if (storedPin.status == PinStatus.VERIFICATION_READY) { in getPin()
[all …]