Searched defs:recordSize (Results 1 - 3 of 3) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccPhoneBookInterfaceManager.java41 protected int recordSize[]; field in class:IccPhoneBookInterfaceManager
61 recordSize = (int[])ar.result;
62 // recordSize[0] is the record length
63 // recordSize[1] is the total length of the EF file
64 // recordSize[2] is the number of records in the EF file
65 logd("GET_RECORD_SIZE Size " + recordSize[0] +
66 " total " + recordSize[1] +
67 " #record " + recordSize[2]);
H A DAdnRecord.java198 * @param recordSize is the size X of EF record
199 * @return hex byte[recordSize] to be written to EF record
202 public byte[] buildAdnString(int recordSize) { argument
206 int footerOffset = recordSize - FOOTER_SIZE_BYTES;
209 adnString = new byte[recordSize];
210 for (int i = 0; i < recordSize; i++) {
H A DIccFileHandler.java100 int recordNum, recordSize, countRecords; field in class:IccFileHandler.LoadLinearFixedContext
179 * @param onLoaded ((AsnyncResult)(onLoaded.obj)).result is the recordSize[]
321 int recordSize[];
370 recordSize = new int[3];
371 recordSize[0] = data[RESPONSE_DATA_RECORD_LENGTH] & 0xFF;
372 recordSize[1] = ((data[RESPONSE_DATA_FILE_SIZE_1] & 0xff) << 8)
374 recordSize[2] = recordSize[1] / recordSize[0];
376 sendResult(response, recordSize, nul
[all...]

Completed in 85 milliseconds