HomeSort by relevance Sort by last modified time
    Searched full:efid (Results 1 - 14 of 14) sorted by null

  /frameworks/base/telephony/java/com/android/internal/telephony/
AdnRecordCache.java 97 * @return List of AdnRecords for efid if we've already loaded them this
101 getRecordsIfLoaded(int efid) {
102 return adnLikeFiles.get(efid);
111 int extensionEfForEf(int efid) {
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,
144 int extensionEF = extensionEfForEf(efid);
146 sendErrorResponse(response, "EF is not known ADN-like EF:" + efid);
150 Message pendingResponse = userWriteResponse.get(efid);
309 int efid; local
    [all...]
IccPhoneBookInterfaceManagerProxy.java 53 updateAdnRecordsInEfBySearch (int efid,
58 efid, oldTag, oldPhoneNumber, newTag, newPhoneNumber, pin2);
62 updateAdnRecordsInEfByIndex(int efid, String newTag,
64 return mIccPhoneBookInterfaceManager.updateAdnRecordsInEfByIndex(efid,
68 public int[] getAdnRecordsSize(int efid) throws android.os.RemoteException {
69 return mIccPhoneBookInterfaceManager.getAdnRecordsSize(efid);
72 public List<AdnRecord> getAdnRecordsInEf(int efid) throws android.os.RemoteException {
73 return mIccPhoneBookInterfaceManager.getAdnRecordsInEf(efid);
IccPhoneBookInterfaceManager.java 118 * @param efid must be one among EF_ADN, EF_FDN, and EF_SDN
131 updateAdnRecordsInEfBySearch (int efid,
144 if (DBG) logd("updateAdnRecordsInEfBySearch: efid=" + efid +
153 adnCache.updateAdnBySearch(efid, oldAdn, newAdn, pin2, response);
171 * @param efid must be one among EF_ADN, EF_FDN, and EF_SDN
181 updateAdnRecordsInEfByIndex(int efid, String newTag,
191 if (DBG) logd("updateAdnRecordsInEfByIndex: efid=" + efid +
199 adnCache.updateAdnByIndex(efid, newAdn, index, pin2, response)
    [all...]
IIccPhoneBook.aidl 40 * 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...]
AdnRecord.java 45 int efid; // or 0 if none field in class:AdnRecord
76 int efid;
82 efid = source.readInt();
88 return new AdnRecord(efid, recordNumber, alphaTag, number, emails);
102 public AdnRecord (int efid, int recordNumber, byte[] record) {
103 this.efid = efid;
116 public AdnRecord (int efid, int recordNumber, String alphaTag, String number, String[] emails) {
117 this.efid = efid;
    [all...]
IccFileHandler.java 97 int efid; field in class:IccFileHandler.LoadLinearFixedContext
105 LoadLinearFixedContext(int efid, int recordNum, Message onLoaded) {
106 this.efid = efid;
112 LoadLinearFixedContext(int efid, Message onLoaded) {
113 this.efid = efid;
376 fileid = lc.efid;
398 phone.mCM.iccIO(COMMAND_READ_RECORD, lc.efid, getEFPath(lc.efid),
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
RuimPhoneBookInterfaceManager.java 52 public int[] getAdnRecordsSize(int efid) {
53 if (DBG) logd("getAdnRecordsSize: efid=" + efid);
61 phone.getIccFileHandler().getEFLinearRecordSize(efid, response);
RuimFileHandler.java 70 protected String getEFPath(int efid) {
71 switch(efid) {
77 return getCommonIccEFPath(efid);
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
SimPhoneBookInterfaceManager.java 52 public int[] getAdnRecordsSize(int efid) {
53 if (DBG) logd("getAdnRecordsSize: efid=" + efid);
61 phone.getIccFileHandler().getEFLinearRecordSize(efid, response);
SIMFileHandler.java 59 protected String getEFPath(int efid) {
62 switch(efid) {
90 String path = getCommonIccEFPath(efid);
UsimPhoneBookManager.java 134 int efid = fileIds.get(USIM_EFEMAIL_TAG); local
164 private void readIapFileAndWait(int efid) {
165 mPhone.getIccFileHandler().loadEFLinearFixedAll(efid, obtainMessage(EVENT_IAP_LOAD_DONE));
354 // RecNum <EF Tag, efid>
412 int efid = ((data[0] & 0xFF) << 8) | (data[1] & 0xFF); local
413 val.put(tag, efid);
SIMRecords.java 1040 int efid = result[1]; local
    [all...]
  /hardware/ril/include/telephony/
ril.h 416 /* A file on SIM has been updated. data[1] contains the EFID. */
    [all...]
  /hardware/ril/libril/
ril.cpp 702 appendPrintBuf("%scmd=0x%X,efid=0x%X,path=%s,%d,%d,%d,%s,pin2=%s", printBuf,
    [all...]

Completed in 615 milliseconds