Searched refs:pin (Results 1 - 10 of 10) sorted by relevance

/packages/apps/Settings/src/com/android/settings/
H A DChooseLockPassword.java256 final String pin = mPasswordEntry.getText().toString();
257 if (TextUtils.isEmpty(pin)) {
262 errorMsg = validatePassword(pin);
264 mFirstPin = pin;
269 if (mFirstPin.equals(pin)) {
271 mLockPatternUtils.saveLockPassword(pin, mRequestedQuality);
H A DIccLockSettings.java38 * In the Change PIN case, it prompts the user for old pin, new pin and new pin
49 // State when entering the old pin
51 // State when entering the new pin - first time
53 // State when entering the new pin - second time
265 // Flip it back and pop up pin dialog
314 private boolean reasonablePin(String pin) { argument
315 if (pin == null || pin
[all...]
H A DConfirmLockPassword.java91 final String pin = mPasswordEntry.getText().toString();
92 if (mLockPatternUtils.checkPassword(pin)) {
/packages/apps/Phone/src/com/android/phone/
H A DGetPin2Screen.java50 mPin2Field = (EditText) findViewById(R.id.pin);
H A DIccNetworkDepersonalizationPanel.java171 String pin = mPinEntry.getText().toString();
173 if (TextUtils.isEmpty(pin)) {
177 if (DBG) log("requesting network depersonalization with code " + pin);
178 mPhone.getIccCard().supplyNetworkDepersonalization(pin,
H A DFdnSetting.java51 // We only care about the pin preferences here, the manage FDN contacts
76 // size limits for the pin.
99 // validate the pin first, before submitting it to the RIL for FDN enable.
109 // throw up error if the pin is invalid.
117 * Attempt to change the pin.
131 // 1. Enter old pin
132 // 2. Enter new pin
133 // 3. Re-Enter new pin
143 // if the pin is not valid, display a message and reset the state.
154 // if the new pin i
353 validatePin(String pin, boolean isPUK) argument
[all...]
H A DPhoneInterfaceManager.java388 public boolean supplyPin(String pin) { argument
392 return checkSimPin.checkPin(pin);
441 synchronized boolean checkPin(String pin) { argument
452 mSimCard.supplyPin(pin, callback);
H A DEnableFdnScreen.java85 mPin2Field = (EditText) findViewById(R.id.pin);
H A DEnableIccPinScreen.java79 mPinField = (EditText) findViewById(R.id.pin);
H A DPhoneApp.java671 boolean authenticateAgainstCachedSimPin(String pin) { argument
672 return (mCachedSimPin != null && mCachedSimPin.equals(pin));
675 void setCachedSimPin(String pin) { argument
676 mCachedSimPin = pin;

Completed in 67 milliseconds