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

/frameworks/base/core/java/android/nfc/tech/
H A DMifareClassic.java270 * @param sectorIndex index of sector, starting from 0
273 public int getBlockCountInSector(int sectorIndex) { argument
274 validateSector(sectorIndex);
276 if (sectorIndex < 32) {
304 * @param sectorIndex index of sector to lookup, starting from 0
307 public int sectorToBlock(int sectorIndex) { argument
308 if (sectorIndex < 32) {
309 return sectorIndex * 4;
311 return 32 * 4 + (sectorIndex - 32) * 16;
332 * @param sectorIndex inde
338 authenticateSectorWithKeyA(int sectorIndex, byte[] key) argument
365 authenticateSectorWithKeyB(int sectorIndex, byte[] key) argument
[all...]

Completed in 63 milliseconds