Home
last modified time | relevance | path

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

/frameworks/base/nfc/java/android/nfc/tech/
DMifareClassic.java369 private boolean authenticate(int sector, byte[] key, boolean keyA) throws IOException { in authenticate() argument
370 validateSector(sector); in authenticate()
385 cmd[1] = (byte) sectorToBlock(sector); in authenticate()
630 private static void validateSector(int sector) { in validateSector() argument
638 if (sector < 0 || sector >= MAX_SECTOR_COUNT) { in validateSector()
639 throw new IndexOutOfBoundsException("sector out of bounds: " + sector); in validateSector()