Home
last modified time | relevance | path

Searched refs:efid (Results 1 – 18 of 18) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DAdnRecordCache.java100 getRecordsIfLoaded(int efid) { in getRecordsIfLoaded() argument
101 return mAdnLikeFiles.get(efid); in getRecordsIfLoaded()
110 public int extensionEfForEf(int efid) { in extensionEfForEf() argument
111 switch (efid) { in extensionEfForEf()
140 public void updateAdnByIndex(int efid, AdnRecord adn, int recordIndex, String pin2, in updateAdnByIndex() argument
143 int extensionEF = extensionEfForEf(efid); in updateAdnByIndex()
145 sendErrorResponse(response, "EF is not known ADN-like EF:" + efid); in updateAdnByIndex()
149 Message pendingResponse = mUserWriteResponse.get(efid); in updateAdnByIndex()
151 sendErrorResponse(response, "Have pending update for EF:" + efid); in updateAdnByIndex()
155 mUserWriteResponse.put(efid, response); in updateAdnByIndex()
[all …]
DAdnRecord.java78 int efid;
84 efid = source.readInt();
90 return new AdnRecord(efid, recordNumber, alphaTag, number, emails);
105 public AdnRecord (int efid, int recordNumber, byte[] record) { in AdnRecord() argument
106 this.mEfid = efid; in AdnRecord()
119 public AdnRecord (int efid, int recordNumber, String alphaTag, String number, String[] emails) { in AdnRecord() argument
120 this.mEfid = efid; in AdnRecord()
127 public AdnRecord(int efid, int recordNumber, String alphaTag, String number) { in AdnRecord() argument
128 this.mEfid = efid; in AdnRecord()
DIsimFileHandler.java35 protected String getEFPath(int efid) { in getEFPath() argument
36 switch(efid) { in getEFPath()
44 String path = getCommonIccEFPath(efid); in getEFPath()
DCsimFileHandler.java35 protected String getEFPath(int efid) { in getEFPath() argument
36 switch(efid) { in getEFPath()
50 String path = getCommonIccEFPath(efid); in getEFPath()
DIccFileHandler.java111 LoadLinearFixedContext(int efid, int recordNum, Message onLoaded) { in LoadLinearFixedContext() argument
112 mEfid = efid; in LoadLinearFixedContext()
119 LoadLinearFixedContext(int efid, int recordNum, String path, Message onLoaded) { in LoadLinearFixedContext() argument
120 mEfid = efid; in LoadLinearFixedContext()
127 LoadLinearFixedContext(int efid, String path, Message onLoaded) { in LoadLinearFixedContext() argument
128 mEfid = efid; in LoadLinearFixedContext()
135 LoadLinearFixedContext(int efid, Message onLoaded) { in LoadLinearFixedContext() argument
136 mEfid = efid; in LoadLinearFixedContext()
605 protected String getCommonIccEFPath(int efid) { in getCommonIccEFPath() argument
606 switch(efid) { in getCommonIccEFPath()
[all …]
DSIMFileHandler.java40 protected String getEFPath(int efid) { in getEFPath() argument
43 switch(efid) { in getEFPath()
70 String path = getCommonIccEFPath(efid); in getEFPath()
DRuimFileHandler.java57 protected String getEFPath(int efid) { in getEFPath() argument
58 switch(efid) { in getEFPath()
70 return getCommonIccEFPath(efid); in getEFPath()
DUsimFileHandler.java36 protected String getEFPath(int efid) { in getEFPath() argument
37 switch(efid) { in getEFPath()
70 String path = getCommonIccEFPath(efid); in getEFPath()
DAdnRecordLoader.java69 private String getEFPath(int efid) { in getEFPath() argument
70 if (efid == IccConstants.EF_ADN) { in getEFPath()
DIsimUiccRecords.java306 private void handleFileUpdate(int efid) { in handleFileUpdate() argument
307 switch (efid) { in handleFileUpdate()
DSIMRecords.java1274 private void handleFileUpdate(int efid) { in handleFileUpdate() argument
1275 switch(efid) { in handleFileUpdate()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DUiccPhoneBookController.java48 updateAdnRecordsInEfBySearch (int efid, String oldTag, String oldPhoneNumber, in updateAdnRecordsInEfBySearch() argument
50 return updateAdnRecordsInEfBySearchForSubscriber(getDefaultSubscription(), efid, oldTag, in updateAdnRecordsInEfBySearch()
56 updateAdnRecordsInEfBySearchForSubscriber(int subId, int efid, String oldTag, in updateAdnRecordsInEfBySearchForSubscriber() argument
62 return iccPbkIntMgrProxy.updateAdnRecordsInEfBySearch(efid, oldTag, in updateAdnRecordsInEfBySearchForSubscriber()
73 updateAdnRecordsInEfByIndex(int efid, String newTag, in updateAdnRecordsInEfByIndex() argument
75 return updateAdnRecordsInEfByIndexForSubscriber(getDefaultSubscription(), efid, newTag, in updateAdnRecordsInEfByIndex()
81 updateAdnRecordsInEfByIndexForSubscriber(int subId, int efid, String newTag, in updateAdnRecordsInEfByIndexForSubscriber() argument
86 return iccPbkIntMgrProxy.updateAdnRecordsInEfByIndex(efid, newTag, in updateAdnRecordsInEfByIndexForSubscriber()
96 public int[] getAdnRecordsSize(int efid) throws android.os.RemoteException { in getAdnRecordsSize() argument
97 return getAdnRecordsSizeForSubscriber(getDefaultSubscription(), efid); in getAdnRecordsSize()
[all …]
DIccPhoneBookInterfaceManager.java158 updateAdnRecordsInEfBySearch (int efid, in updateAdnRecordsInEfBySearch() argument
171 if (DBG) logd("updateAdnRecordsInEfBySearch: efid=" + efid + in updateAdnRecordsInEfBySearch()
175 efid = updateEfForIccType(efid); in updateAdnRecordsInEfBySearch()
185 mAdnCache.updateAdnBySearch(efid, oldAdn, newAdn, pin2, response); in updateAdnRecordsInEfBySearch()
212 updateAdnRecordsInEfByIndex(int efid, String newTag, in updateAdnRecordsInEfByIndex() argument
222 if (DBG) logd("updateAdnRecordsInEfByIndex: efid=" + efid + in updateAdnRecordsInEfByIndex()
232 mAdnCache.updateAdnByIndex(efid, newAdn, index, pin2, response); in updateAdnRecordsInEfByIndex()
250 public abstract int[] getAdnRecordsSize(int efid); in getAdnRecordsSize() argument
261 public List<AdnRecord> getAdnRecordsInEf(int efid) { in getAdnRecordsInEf() argument
270 efid = updateEfForIccType(efid); in getAdnRecordsInEf()
[all …]
DIIccPhoneBook.aidl46 List<AdnRecord> getAdnRecordsInEf(int efid); in getAdnRecordsInEf() argument
56 List<AdnRecord> getAdnRecordsInEfForSubscriber(int subId, int efid); in getAdnRecordsInEfForSubscriber() argument
76 boolean updateAdnRecordsInEfBySearch(int efid, in updateAdnRecordsInEfBySearch() argument
102 boolean updateAdnRecordsInEfBySearchForSubscriber(int subId, int efid, in updateAdnRecordsInEfBySearchForSubscriber() argument
121 boolean updateAdnRecordsInEfByIndex(int efid, String newTag, in updateAdnRecordsInEfByIndex() argument
141 boolean updateAdnRecordsInEfByIndexForSubscriber(int subId, int efid, String newTag, in updateAdnRecordsInEfByIndexForSubscriber() argument
154 int[] getAdnRecordsSize(int efid); in getAdnRecordsSize() argument
166 int[] getAdnRecordsSizeForSubscriber(int subId, int efid); in getAdnRecordsSizeForSubscriber() argument
DIccPhoneBookInterfaceManagerProxy.java44 updateAdnRecordsInEfBySearch (int efid, in updateAdnRecordsInEfBySearch() argument
49 efid, oldTag, oldPhoneNumber, newTag, newPhoneNumber, pin2); in updateAdnRecordsInEfBySearch()
53 updateAdnRecordsInEfByIndex(int efid, String newTag, in updateAdnRecordsInEfByIndex() argument
55 return mIccPhoneBookInterfaceManager.updateAdnRecordsInEfByIndex(efid, in updateAdnRecordsInEfByIndex()
59 public int[] getAdnRecordsSize(int efid) { in getAdnRecordsSize() argument
60 return mIccPhoneBookInterfaceManager.getAdnRecordsSize(efid); in getAdnRecordsSize()
63 public List<AdnRecord> getAdnRecordsInEf(int efid) { in getAdnRecordsInEf() argument
64 return mIccPhoneBookInterfaceManager.getAdnRecordsInEf(efid); in getAdnRecordsInEf()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
DRuimPhoneBookInterfaceManager.java57 public int[] getAdnRecordsSize(int efid) { in getAdnRecordsSize() argument
58 if (DBG) logd("getAdnRecordsSize: efid=" + efid); in getAdnRecordsSize()
70 fh.getEFLinearRecordSize(efid, response); in getAdnRecordsSize()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
DSimPhoneBookInterfaceManager.java57 public int[] getAdnRecordsSize(int efid) { in getAdnRecordsSize() argument
58 if (DBG) logd("getAdnRecordsSize: efid=" + efid); in getAdnRecordsSize()
69 fh.getEFLinearRecordSize(efid, response); in getAdnRecordsSize()
DUsimPhoneBookManager.java155 int efid = fileIds.get(USIM_EFEMAIL_TAG); in readEmailFileAndWait() local
185 private void readIapFileAndWait(int efid) { in readIapFileAndWait() argument
186 mFh.loadEFLinearFixedAll(efid, obtainMessage(EVENT_IAP_LOAD_DONE)); in readIapFileAndWait()
440 int efid = ((data[0] & 0xFF) << 8) | (data[1] & 0xFF); in parseEf() local
441 val.put(tag, efid); in parseEf()