Home | History | Annotate | Download | only in telephony

Lines Matching defs:ef

33     int ef;
73 loadFromEF(int ef, int extensionEF, int recordNumber,
75 this.ef = ef;
81 ef, recordNumber,
92 loadAllFromEF(int ef, int extensionEF,
94 this.ef = ef;
99 ef,
105 * Write adn to a EF SIM record
106 * It will get the record size of EF record and compose hex adn array
107 * then write the hex array to EF record
110 * @param ef EF fileid
111 * @param extensionEF extension EF fileid
117 updateEF(AdnRecord adn, int ef, int extensionEF, int recordNumber,
119 this.ef = ef;
125 phone.mIccFileHandler.getEFLinearRecordSize( ef,
144 throw new RuntimeException("get EF record size failed",
151 // int[1] is the total length of the EF file
152 // int[2] is the number of records in the EF file
155 throw new RuntimeException("get wrong EF record size format",
166 phone.mIccFileHandler.updateEFLinearFixed(ef, recordNumber,
175 throw new RuntimeException("update EF adn record failed",
190 Log.d(LOG_TAG,"ADN EF: 0x"
191 + Integer.toHexString(ef)
196 adn = new AdnRecord(ef, recordNumber, data);
221 Log.d(LOG_TAG,"ADN extension EF: 0x"
246 adn = new AdnRecord(ef, 1 + i, datas.get(i));