Searched refs:efid (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/telephony/java/com/android/internal/telephony/
H A DIIccPhoneBook.aidl40 * Loads the AdnRecords in efid and returns them as a
43 * @param efid the EF id of a ADN-like SIM
46 List<AdnRecord> getAdnRecordsInEf(int efid);
54 * @param efid must be one among EF_ADN, EF_FDN, and EF_SDN
66 boolean updateAdnRecordsInEfBySearch(int efid,
77 * @param efid must be one among EF_ADN, EF_FDN, and EF_SDN
86 boolean updateAdnRecordsInEfByIndex(int efid, String newTag,
91 * Get the max munber of records in efid
93 * @param efid the EF id of a ADN-like SIM
99 int[] getAdnRecordsSize(int efid);
[all...]
H A DAdnRecordCache.java97 * @return List of AdnRecords for efid if we've already loaded them this
101 getRecordsIfLoaded(int efid) { argument
102 return adnLikeFiles.get(efid);
111 int extensionEfForEf(int efid) { argument
112 switch (efid) {
134 * @param efid must be one among EF_ADN, EF_FDN, and EF_SDN
141 public void updateAdnByIndex(int efid, AdnRecord adn, int recordIndex, String pin2, argument
144 int extensionEF = extensionEfForEf(efid);
146 sendErrorResponse(response, "EF is not known ADN-like EF:" + efid);
150 Message pendingResponse = userWriteResponse.get(efid);
177 updateAdnBySearch(int efid, AdnRecord oldAdn, AdnRecord newAdn, String pin2, Message response) argument
247 requestLoadAllAdnLike(int efid, int extensionEf, Message response) argument
[all...]
H A DIccPhoneBookInterfaceManagerProxy.java53 updateAdnRecordsInEfBySearch (int efid, argument
58 efid, oldTag, oldPhoneNumber, newTag, newPhoneNumber, pin2);
62 updateAdnRecordsInEfByIndex(int efid, String newTag, argument
64 return mIccPhoneBookInterfaceManager.updateAdnRecordsInEfByIndex(efid,
68 public int[] getAdnRecordsSize(int efid) throws android.os.RemoteException { argument
69 return mIccPhoneBookInterfaceManager.getAdnRecordsSize(efid);
72 public List<AdnRecord> getAdnRecordsInEf(int efid) throws android.os.RemoteException { argument
73 return mIccPhoneBookInterfaceManager.getAdnRecordsInEf(efid);
H A DIccPhoneBookInterfaceManager.java128 * @param efid must be one among EF_ADN, EF_FDN, and EF_SDN
141 updateAdnRecordsInEfBySearch (int efid, argument
154 if (DBG) logd("updateAdnRecordsInEfBySearch: efid=" + efid +
158 efid = updateEfForIccType(efid);
167 adnCache.updateAdnBySearch(efid, oldAdn, newAdn, pin2, response);
181 * @param efid must be one among EF_ADN, EF_FDN, and EF_SDN
191 updateAdnRecordsInEfByIndex(int efid, String newTag, argument
201 if (DBG) logd("updateAdnRecordsInEfByIndex: efid
225 getAdnRecordsSize(int efid) argument
236 getAdnRecordsInEf(int efid) argument
279 updateEfForIccType(int efid) argument
[all...]
H A DAdnRecord.java44 int efid; // or 0 if none field in class:AdnRecord
75 int efid;
81 efid = source.readInt();
87 return new AdnRecord(efid, recordNumber, alphaTag, number, emails);
101 public AdnRecord (int efid, int recordNumber, byte[] record) { argument
102 this.efid = efid;
115 public AdnRecord (int efid, int recordNumber, String alphaTag, String number, String[] emails) { argument
116 this.efid = efid;
123 AdnRecord(int efid, int recordNumber, String alphaTag, String number) argument
[all...]
H A DIccFileHandler.java97 int efid; field in class:IccFileHandler.LoadLinearFixedContext
105 LoadLinearFixedContext(int efid, int recordNum, Message onLoaded) { argument
106 this.efid = efid;
112 LoadLinearFixedContext(int efid, Message onLoaded) { argument
113 this.efid = efid;
376 fileid = lc.efid;
398 phone.mCM.iccIO(COMMAND_READ_RECORD, lc.efid, getEFPath(lc.efid),
520 getCommonIccEFPath(int efid) argument
540 getEFPath(int efid) argument
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DCdmaLteUiccFileHandler.java34 protected String getEFPath(int efid) { argument
35 switch(efid) {
50 return getCommonIccEFPath(efid);
H A DRuimFileHandler.java70 protected String getEFPath(int efid) { argument
71 switch(efid) {
77 return getCommonIccEFPath(efid);
H A DRuimPhoneBookInterfaceManager.java54 public int[] getAdnRecordsSize(int efid) { argument
55 if (DBG) logd("getAdnRecordsSize: efid=" + efid);
64 phone.getIccFileHandler().getEFLinearRecordSize(efid, response);
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DSimPhoneBookInterfaceManager.java54 public int[] getAdnRecordsSize(int efid) { argument
55 if (DBG) logd("getAdnRecordsSize: efid=" + efid);
64 phone.getIccFileHandler().getEFLinearRecordSize(efid, response);
H A DSIMFileHandler.java59 protected String getEFPath(int efid) { argument
62 switch(efid) {
91 String path = getCommonIccEFPath(efid);
H A DUsimPhoneBookManager.java155 int efid = fileIds.get(USIM_EFEMAIL_TAG);
185 private void readIapFileAndWait(int efid) { argument
186 mPhone.getIccFileHandler().loadEFLinearFixedAll(efid, obtainMessage(EVENT_IAP_LOAD_DONE));
382 // RecNum <EF Tag, efid>
440 int efid = ((data[0] & 0xFF) << 8) | (data[1] & 0xFF);
441 val.put(tag, efid);
H A DSIMRecords.java1107 private void handleFileUpdate(int efid) { argument
1108 switch(efid) {
1145 int efid = result[1];
1146 handleFileUpdate(efid);

Completed in 170 milliseconds