HomeSort by relevance Sort by last modified time
    Searched refs:puk (Results 1 - 8 of 8) 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 27 char puk[ A_SIM_PUK_SIZE+1 ]; member in struct:ASimCardRec_
44 strncpy( card->puk, "12345678", sizeof(card->puk) );
82 return sim->puk;
93 asimcard_set_puk( ASimCard sim, const char* puk )
95 strncpy( sim->puk, puk, A_SIM_PUK_SIZE );
122 asimcard_check_puk( ASimCard sim, const char* puk, const char* pin )
127 if ( !strcmp( sim->puk, puk ) ) {
    [all...]
android_modem.c 770 case A_SIM_STATUS_PUK: answer = "+CPIN: SIM PUK"; break;
1253 char puk[5]; local
    [all...]
  /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) {
  /frameworks/base/telephony/java/com/android/internal/telephony/
IccCard.java 71 /* PUK means ICC is locked on PUK1 */
72 static public final String INTENT_VALUE_LOCKED_ON_PUK = "PUK";
227 public void supplyPuk (String puk, String newPin, Message onComplete) {
228 mPhone.mCM.supplyIccPuk(puk, newPin,
414 if(mDbg) log("Notify SIM pin or puk locked.");
518 // a PIN/PUK/PIN2/PUK2/Network Personalization
CommandsInterface.java 33 SIM_LOCKED_OR_ABSENT, /* SIM PIN locked, PUK required, network
38 RUIM_LOCKED_OR_ABSENT, /* RUIM PIN locked, PUK required, network
567 * Supply the ICC PUK to the ICC card
578 void supplyIccPuk(String puk, String newPin, Message result);
    [all...]
RIL.java 675 supplyIccPuk(String puk, String newPin, Message result) {
683 rr.mp.writeString(puk);
704 supplyIccPuk2(String puk, String newPin2, Message result) {
712 rr.mp.writeString(puk);
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/test/
SimulatedCommands.java 154 public void supplyIccPuk(String puk, String newPin, Message result) {
165 if (puk != null && puk.equals(SIM_PUK_CODE)) {
    [all...]

Completed in 42 milliseconds