HomeSort by relevance Sort by last modified time
    Searched defs:imsi (Results 1 - 11 of 11) sorted by null

  /external/wpa_supplicant_6/wpa_supplicant/src/hlr_auc_gw/
hlr_auc_gw.c 24 * SIM-REQ-AUTH <IMSI> <max_chal>
25 * SIM-RESP-AUTH <IMSI> Kc1:SRES1:RAND1 Kc2:SRES2:RAND2 [Kc3:SRES3:RAND3]
26 * SIM-RESP-AUTH <IMSI> FAILURE
29 * AKA-REQ-AUTH <IMSI>
30 * AKA-RESP-AUTH <IMSI> <RAND> <AUTN> <IK> <CK> <RES>
31 * AKA-RESP-AUTH <IMSI> FAILURE
34 * AKA-AUTS <IMSI> <AUTS> <RAND>
36 * IMSI and max_chal are sent as an ASCII string,
40 * text file in IMSI:Kc:SRES:RAND format, IMSI in ASCII, other fields as he
59 char imsi[20]; member in struct:gsm_triplet
70 char imsi[20]; member in struct:milenage_parameters
    [all...]
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
DeviceInfoInstrument.java 54 private static final String IMSI = "imsi";
144 // imsi
145 String imsi = tm.getSubscriberId(); local
146 addResult(IMSI, imsi);
  /external/wpa_supplicant/
eap.c 856 char imsi[100]; local
861 imsi_len = sizeof(imsi);
862 if (scard_get_imsi(sm->scard_ctx, imsi, &imsi_len)) {
863 wpa_printf(MSG_WARNING, "Failed to get IMSI from SIM");
867 wpa_hexdump_ascii(MSG_DEBUG, "IMSI", (u8 *) imsi, imsi_len);
882 "IMSI-based identity");
887 os_memcpy(ssid->identity + 1, imsi, imsi_len);
982 "IMSI", identity, identity_len);
    [all...]
eapol_test.c 716 char imsi[20]; local
752 len = sizeof(imsi);
753 if (scard_get_imsi(scard, imsi, &len))
755 wpa_hexdump_ascii(MSG_DEBUG, "SCARD: IMSI", (u8 *) imsi, len);
756 /* NOTE: Permanent Username: 1 | IMSI */
775 printf("%c", imsi[j]);
822 char imsi[20]; local
851 len = sizeof(imsi);
852 if (scard_get_imsi(scard, imsi, &len))
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/
eapol_test.c 792 char imsi[20]; local
828 len = sizeof(imsi);
829 if (scard_get_imsi(scard, imsi, &len))
831 wpa_hexdump_ascii(MSG_DEBUG, "SCARD: IMSI", (u8 *) imsi, len);
832 /* NOTE: Permanent Username: 1 | IMSI */
851 printf("%c", imsi[j]);
898 char imsi[20]; local
927 len = sizeof(imsi);
928 if (scard_get_imsi(scard, imsi, &len))
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_sim_db.c 41 u8 imsi[20]; member in struct:eap_sim_db_pending
78 eap_sim_db_get_pending(struct eap_sim_db_data *data, const u8 *imsi,
86 os_memcmp(entry->imsi, imsi, imsi_len) == 0) {
109 const char *imsi, char *buf)
116 * SIM-RESP-AUTH <IMSI> Kc(i):SRES(i):RAND(i) ...
117 * SIM-RESP-AUTH <IMSI> FAILURE
118 * (IMSI = ASCII string, Kc/SRES/RAND = hex string)
121 entry = eap_sim_db_get_pending(data, (u8 *) imsi, os_strlen(imsi), 0)
281 char buf[1000], *pos, *cmd, *imsi; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap.c 875 char imsi[100]; local
880 imsi_len = sizeof(imsi);
881 if (scard_get_imsi(sm->scard_ctx, imsi, &imsi_len)) {
882 wpa_printf(MSG_WARNING, "Failed to get IMSI from SIM");
886 wpa_hexdump_ascii(MSG_DEBUG, "IMSI", (u8 *) imsi, imsi_len);
901 "IMSI-based identity");
906 os_memcpy(conf->identity + 1, imsi, imsi_len);
1000 "IMSI", identity, identity_len);
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
SIMRecords.java 61 String imsi; field in class:SIMRecords
202 imsi = null;
232 return imsi;
471 if (imsi == null || mncLength == UNINITIALIZED || mncLength == UNKNOWN) {
477 return imsi.substring(0, 3 + mncLength);
505 Log.e(LOG_TAG, "Exception querying IMSI, Exception:" + ar.exception);
509 imsi = (String) ar.result;
511 // IMSI (MCC+MNC+MSIN) is at least 6 digits, but not more
513 if (imsi != null && (imsi.length() < 6 || imsi.length() > 15))
    [all...]
GSMPhone.java 96 // Key used to read/write the SIM IMSI used for storing the voice mail
825 private void setVmSimImsi(String imsi) {
828 editor.putString(VM_SIM_IMSI, imsi);
864 return mSIMRecords.imsi;
1223 String imsi = getVmSimImsi(); local
    [all...]
  /frameworks/base/include/utils/
ResourceTypes.h 812 uint32_t imsi; member in union:android::ResTable_config::__anon8809
1009 int32_t diff = (int32_t)(imsi - o.imsi);
    [all...]
  /prebuilt/common/osgi/
osgi.jar 

Completed in 333 milliseconds