Home
last modified time | relevance | path

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

/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DAdnRecordTest.java198 assertThat(AdnRecord.getMaxAlphaTagBytes(-1)).isEqualTo(0); in testGetMaxAlphaTagBytes()
199 assertThat(AdnRecord.getMaxAlphaTagBytes(0)).isEqualTo(0); in testGetMaxAlphaTagBytes()
200 assertThat(AdnRecord.getMaxAlphaTagBytes(5)).isEqualTo(0); in testGetMaxAlphaTagBytes()
201 assertThat(AdnRecord.getMaxAlphaTagBytes(14)).isEqualTo(0); in testGetMaxAlphaTagBytes()
202 assertThat(AdnRecord.getMaxAlphaTagBytes(15)).isEqualTo(1); in testGetMaxAlphaTagBytes()
203 assertThat(AdnRecord.getMaxAlphaTagBytes(25)).isEqualTo(11); in testGetMaxAlphaTagBytes()
204 assertThat(AdnRecord.getMaxAlphaTagBytes(30)).isEqualTo(16); in testGetMaxAlphaTagBytes()
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DAdnRecord.java116 public static int getMaxAlphaTagBytes(int maxRecordLength) { in getMaxAlphaTagBytes() method in AdnRecord
/aosp12/packages/services/Telephony/src/com/android/phone/
H A DSimPhonebookProvider.java342 AdnRecord.getMaxAlphaTagBytes(getRecordSize(recordsSize))) in addEfToCursor()
725 int maxLength = AdnRecord.getMaxAlphaTagBytes(getRecordSize(recordsSize)); in validateValues()