Home | History | Annotate | Download | only in phone

Lines Matching refs:pin

50      * The first is used for toggling FDN enable, the second for the PIN change.
56 // We only care about the pin preferences here, the manage FDN contacts
84 // size limits for the pin.
108 // validate the pin first, before submitting it to the RIL for FDN enable.
118 // throw up error if the pin is invalid.
126 * Attempt to change the pin.
144 // 1. Enter old pin
145 // 2. Enter new pin
146 // 3. Re-Enter new pin
156 // if the pin is not valid, display a message and reset the state.
167 // if the new pin is not valid, display a message and reset the state.
176 // if the re-entered pin is not valid, display a message and reset the state.
182 // If the PIN is valid, then we submit the change PIN request.
207 // if the new pin is not valid, display
217 // if the re-entered pin is not valid, display
271 // when changing the pin we need to pay attention to whether or not
394 * Reset the state of the pin change dialog.
405 * Reset the state of the pin change dialog solely for PUK2 use.
416 * Validate the pin entry.
418 * @param pin This is the pin to validate
420 * the pin input as a puk.
422 private boolean validatePin(String pin, boolean isPuk) {
424 // for pin, we have 4-8 numbers, or puk, we use only 8.
428 if (pin == null || pin.length() < pinMinimum || pin.length() > MAX_PIN_LENGTH) {
469 // Only reset the pin change dialog if we're not in the middle of changing it.
496 * Save the state of the pin change.