HomeSort by relevance Sort by last modified time
    Searched refs:puk (Results 1 - 15 of 15) sorted by null

  /external/qemu/telephony/
sim_card.h 37 extern void asimcard_set_puk( ASimCard sim, const char* puk );
40 extern int asimcard_check_puk( ASimCard sim, const char* puk, const char* pin );
sim_card.c 28 char puk[ A_SIM_PUK_SIZE+1 ]; member in struct:ASimCardRec_
46 strncpy( card->puk, "12345678", sizeof(card->puk) );
85 return sim->puk;
96 asimcard_set_puk( ASimCard sim, const char* puk )
98 strncpy( sim->puk, puk, A_SIM_PUK_SIZE );
125 asimcard_check_puk( ASimCard sim, const char* puk, const char* pin )
130 if ( !strcmp( sim->puk, puk ) ) {
    [all...]
android_modem.c 1838 char puk[5]; local
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
ITelephony.aidl 149 * Supply puk to unlock the SIM and set SIM pin to new pin.
151 * @param puk The puk to check.
155 boolean supplyPuk(String puk, String pin);
158 * Handles PIN MMI commands (PIN/PIN2/PUK/PUK2), which are initiated
CommandsInterface.java 586 * Supply the ICC PUK and newPin to the ICC card
597 void supplyIccPuk(String puk, String newPin, Message result);
600 * Supply the PUK, new pin for the app with this AID on the ICC card
613 void supplyIccPukForApp(String puk, String newPin, String aid, Message result);
    [all...]
IccCard.java 105 /* PUK means ICC is locked on PUK1 */
106 static public final String INTENT_VALUE_LOCKED_ON_PUK = "PUK";
109 /* PERM_DISABLED means ICC is permanently disabled due to puk fails */
349 public void supplyPuk (String puk, String newPin, Message onComplete) {
350 mPhone.mCM.supplyIccPuk(puk, newPin,
556 if (mDbg) log("Notify SIM pin or puk locked.");
736 // a PIN/PUK/PIN2/PUK2/Network Personalization
    [all...]
RIL.java 708 supplyIccPuk(String puk, String newPin, Message result) {
709 supplyIccPukForApp(puk, newPin, null, result);
713 supplyIccPukForApp(String puk, String newPin, String aid, Message result) {
721 rr.mp.writeString(puk);
754 supplyIccPuk2ForApp(String puk, String newPin2, String aid, Message result) {
762 rr.mp.writeString(puk);
    [all...]
  /packages/apps/Phone/src/com/android/phone/
PhoneInterfaceManager.java 432 public boolean supplyPuk(String puk, String pin) {
436 return checkSimPuk.unlockSim(puk, pin);
486 * Use PIN or PUK to unlock SIM card
488 * If PUK is null, unlock SIM card with PIN
490 * If PUK is not null, unlock SIM card with PUK and set PIN code
492 synchronized boolean unlockSim(String puk, String pin) {
503 if (puk == null) {
506 mSimCard.supplyPuk(puk, pin, callback);
  /frameworks/base/telephony/java/com/android/internal/telephony/sip/
SipCommandInterface.java 46 public void supplyIccPuk(String puk, String newPin, Message result) {
52 public void supplyIccPuk2(String puk, String newPin2, Message result) {
399 public void supplyIccPukForApp(String puk, String newPin, String aid, Message response) {
  /frameworks/base/policy/src/com/android/internal/policy/impl/
SimPukUnlockScreen.java 41 * Displays a dialer like interface to unlock the SIM PUK.
153 protected CheckSimPuk(String puk, String pin) {
154 mPuk = puk;
225 // make sure that the puk is at least 8 digits long.
381 // clear the PIN/PUK entry fields if the user cancels
  /external/chromium/chrome/browser/ui/webui/chromeos/
sim_unlock_ui.cc 168 // Pending code input (PIN/PUK).
180 // Pass PIN/PUK code to flimflam and check status.
183 // Single handler for PIN/PUK code operations.
202 // completed (either cancelled or with entry of PIN/PUK).
205 // Checks whether SIM card is in PUK locked state and proceeds to PUK input.
503 std::string puk; local
506 !args->GetString(0, &puk) ||
512 HandleEnterCode(CODE_PUK, puk);
614 // Proceed user to PUK input
    [all...]
  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
UsimDataDownloadCommands.java 172 public void supplyIccPuk(String puk, String newPin, Message result) {
176 public void supplyIccPukForApp(String puk, String newPin, String aid, Message result) {
  /frameworks/base/telephony/java/com/android/internal/telephony/test/
SimulatedCommands.java 152 public void supplyIccPuk(String puk, String newPin, Message result) {
163 if (puk != null && puk.equals(SIM_PUK_CODE)) {
    [all...]
  /external/chromium/chrome/browser/chromeos/cros/
network_library.h 126 PIN_ERROR_INCORRECT_CODE = 2, // Either PIN/PUK specified is incorrect.
    [all...]
network_library.cc 175 const char* kSIMLockPuk = "sim-puk";
    [all...]

Completed in 215 milliseconds