Home
last modified time | relevance | path

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

/tools/apksig/src/test/java/com/android/apksig/internal/asn1/ber/
DBerDataValueReaderTestBase.java44 assertNull(readDataValue("")); in testEmptyInput()
50 assertNotNull(reader.readDataValue()); in testEndOfInput()
52 assertNull(reader.readDataValue()); in testEndOfInput()
54 assertNull(reader.readDataValue()); in testEndOfInput()
59 BerDataValue dataValue = readDataValue("1000"); in testSingleByteTagId()
64 dataValue = readDataValue("3900"); in testSingleByteTagId()
69 dataValue = readDataValue("6700"); in testSingleByteTagId()
74 dataValue = readDataValue("8600"); in testSingleByteTagId()
79 dataValue = readDataValue("fe00"); in testSingleByteTagId()
87 assertEquals(7, readDataValue("3f0700").getTagNumber()); in testHighTagNumber()
[all …]
DBerDataValueTest.java104 assertSame(TEST_VALUE1, reader.readDataValue()); in testDataValueReader()
105 assertNull(reader.readDataValue()); in testDataValueReader()
106 assertNull(reader.readDataValue()); in testDataValueReader()
120 assertByteBufferEquals(HexEncoding.decode("30020304"), reader.readDataValue().getEncoded()); in testContentsReader()
121 assertByteBufferEquals(HexEncoding.decode("0500"), reader.readDataValue().getEncoded()); in testContentsReader()
122 assertNull(reader.readDataValue()); in testContentsReader()
/tools/apksig/src/main/java/com/android/apksig/internal/asn1/ber/
DInputStreamBerDataValueReader.java39 public BerDataValue readDataValue() throws BerDataValueFormatException { in readDataValue() method in InputStreamBerDataValueReader
40 return readDataValue(mIn); in readDataValue()
49 private static BerDataValue readDataValue(InputStream input) in readDataValue() method in InputStreamBerDataValueReader
215 BerDataValue dataValue = readDataValue(in); in skipConstructedIndefiniteLengthContents()
DByteBufferBerDataValueReader.java36 public BerDataValue readDataValue() throws BerDataValueFormatException { in readDataValue() method in ByteBufferBerDataValueReader
201 readDataValue(); in skipConstructedIndefiniteLengthContents()
DBerDataValueReader.java33 BerDataValue readDataValue() throws BerDataValueFormatException; in readDataValue() method
DBerDataValue.java107 public BerDataValue readDataValue() throws BerDataValueFormatException { in readDataValue() method in BerDataValue.ParsedValueReader
/tools/apksig/src/main/java/com/android/apksig/internal/asn1/
DAsn1BerParser.java64 containerDataValue = new ByteBufferBerDataValueReader(encoded).readDataValue(); in parse()
100 containerDataValue = new ByteBufferBerDataValueReader(encoded).readDataValue(); in parseImplicitSetOf()
239 dataValue = elementsReader.readDataValue(); in parseSequence()
292 dataValue = elementsReader.readDataValue(); in parseSetOf()
439 dataValue = dataValue.contentsReader().readDataValue(); in setValueFrom()