HomeSort by relevance Sort by last modified time
    Searched refs:pin2 (Results 1 - 25 of 27) sorted by null

1 2

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IIccPhoneBook.aidl 63 * @param pin2 required to update EF_FDN, otherwise must be null
69 String pin2);
83 * @param pin2 required to update EF_FDN, otherwise must be null
88 String pin2);
IccPhoneBookInterfaceManagerProxy.java 51 String pin2) {
53 efid, oldTag, oldPhoneNumber, newTag, newPhoneNumber, pin2);
59 String newPhoneNumber, int index, String pin2) {
61 newTag, newPhoneNumber, index, pin2);
IccProvider.java 59 private static final String STR_PIN2 = "pin2";
111 String pin2 = null; local
123 pin2 = initialValues.getAsString("pin2");
134 boolean success = addIccRecordToEf(efType, tag, number, null, pin2);
201 String pin2 = null; local
223 pin2 = normalizeValue(val);
231 if (efType == IccConstants.EF_FDN && TextUtils.isEmpty(pin2)) {
235 boolean success = deleteIccRecordFromEf(efType, tag, number, emails, pin2);
246 String pin2 = null local
    [all...]
IccPhoneBookInterfaceManager.java 155 * @param pin2 required to update EF_FDN, otherwise must be null
162 String newTag, String newPhoneNumber, String pin2) {
175 " ("+ newTag + "," + newPhoneNumber + ")"+ " pin2=" + pin2);
187 mAdnCache.updateAdnBySearch(efid, oldAdn, newAdn, pin2, response);
210 * @param pin2 required to update EF_FDN, otherwise must be null
216 String newPhoneNumber, int index, String pin2) {
227 "("+ newTag + "," + newPhoneNumber + ")"+ " pin2=" + pin2);
235 mAdnCache.updateAdnByIndex(efid, newAdn, index, pin2, response)
    [all...]
IccCard.java 101 * Supply the ICC PIN2 to the ICC
103 public void supplyPin2 (String pin2, Message onComplete);
152 * @param password needed to change the ICC fdn enable, aka Pin2
CommandsInterface.java 629 * Supply the ICC PIN2 to the ICC card
642 void supplyIccPin2(String pin2, Message result);
645 * Supply the PIN2 for the app with this AID on the ICC card
660 void supplyIccPin2ForApp(String pin2, String aid, Message result);
    [all...]
RIL.java     [all...]
  /external/chromium_org/remoting/host/
pin_hash_unittest.cc 25 std::string pin2("4321");
34 pin2));
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
SimPhoneBookTest.java 71 String pin2 = null; local
75 firstAdn.getAlphaTag(), firstAdn.getNumber(), adnIndex, pin2);
84 secondAdn.getAlphaTag(), secondAdn.getNumber(), pin2);
94 emptyAdn.getAlphaTag(), emptyAdn.getNumber(), pin2);
103 pin2);
  /external/chromium_org/remoting/tools/
register_host.py 59 pin2 = getpass.getpass("Confirm host PIN: ")
60 if pin2 != pin:
  /external/wpa_supplicant_8/src/eap_peer/
eap_config.h 433 * pin2 - PIN for USIM, GSM SIM, and smartcards (Phase 2)
439 * This field is like pin2, but used for phase 2 (inside
444 char *pin2; member in struct:eap_peer_config
eap_tls_common.c 104 params->pin = config->pin2;
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
AdnRecordCache.java 136 * @param pin2 is required to update EF_FDN, otherwise must be null
140 public void updateAdnByIndex(int efid, AdnRecord adn, int recordIndex, String pin2,
158 recordIndex, pin2,
172 * @param pin2 is required to update EF_FDN, otherwise must be null
177 String pin2, Message response) {
236 index, pin2,
IccCardApplicationStatus.java 112 public PinState pin2; field in class:IccCardApplicationStatus
225 sb.append(",pin2=").append(pin2);
AdnRecordLoader.java 112 * @param pin2 for CHV2 operations, must be null if pin2 is not needed
117 String pin2, Message response) {
122 mPin2 = pin2;
UiccCardApplication.java 87 mPin2State = as.pin2;
120 mPin2State = as.pin2;
548 public void supplyPin2 (String pin2, Message onComplete) {
550 mCi.supplyIccPin2(pin2, onComplete);
631 * @param password needed to change the ICC fdn enable, aka Pin2
IccFileHandler.java 282 * @param pin2 for CHV2 operations, otherwist must be null
287 String pin2, Message onComplete) {
290 IccUtils.bytesToHexString(data), pin2, mAid, onComplete);
IccCardProxy.java 563 public void supplyPin2(String pin2, Message onComplete) {
566 mUiccApplication.supplyPin2(pin2, onComplete);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipCommandInterface.java 289 int p3, String data, String pin2, Message result) {
293 int p3, String data, String pin2, String aid, Message result) {
523 public void supplyIccPin2ForApp(String pin2, String aid, Message response) {
  /hardware/ril/include/telephony/
ril.h 43 RIL_E_PASSWORD_INCORRECT = 3, /* for PIN/PIN2 methods only! */
44 RIL_E_SIM_PIN2 = 4, /* Operation requires SIM PIN2 to be entered */
45 RIL_E_SIM_PUK2 = 5, /* Operation requires SIM PIN2 to be entered */
305 char *pin2; /* May be NULL*/ member in struct:__anon33876
319 char *pin2; /* May be NULL*/ member in struct:__anon33877
536 RIL_PinState pin2; member in struct:__anon33890
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
UsimDataDownloadCommands.java 182 public void supplyIccPin2(String pin2, Message result) {
186 public void supplyIccPin2ForApp(String pin2, String aid, Message result) {
394 String pin2, Message response) {
646 String data, String pin2, String aid, Message response) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
SimulatedCommands.java 200 public void supplyIccPin2(String pin2, Message result) {
211 if (pin2 != null && pin2.equals(mPin2Code)) {
318 Rlog.i(LOG_TAG, "[SimCmd] changeIccPin2: pin2 failed!");
416 Rlog.i(LOG_TAG, "[SimCmd] setFacilityLock: pin2 is valid");
428 Rlog.i(LOG_TAG, "[SimCmd] setFacilityLock: pin2 failed!");
    [all...]
  /external/chromium_org/remoting/webapp/
host_setup_dialog.js 491 var pin2 = this.pinConfirm_.value;
492 if (pin1 != pin2) {
  /hardware/ril/libril/
ril.cpp 703 * String pin2
739 simIO.v6.pin2 = strdupReadString(p);
743 appendPrintBuf("%scmd=0x%X,efid=0x%X,path=%s,%d,%d,%d,%s,pin2=%s,aid=%s", printBuf,
746 (char*)simIO.v6.data, (char*)simIO.v6.pin2, simIO.v6.aidPtr);
760 memsetString (simIO.v6.pin2);
766 free (simIO.v6.pin2);
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
config_file.c 686 STR(pin2);

Completed in 311 milliseconds

1 2