Home
last modified time | relevance | path

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

/tools/apksig/src/main/java/com/android/apksig/internal/asn1/
DAsn1BerParser.java19 import com.android.apksig.internal.asn1.ber.BerDataValue;
62 BerDataValue containerDataValue; in parse()
98 BerDataValue containerDataValue; in parseImplicitSetOf()
110 private static <T> T parse(BerDataValue container, Class<T> containerClass) in parse()
146 private static <T> T parseChoice(BerDataValue dataValue, Class<T> containerClass) in parseChoice()
195 private static <T> T parseSequence(BerDataValue container, Class<T> containerClass) in parseSequence()
200 private static <T> T parseSequence(BerDataValue container, Class<T> containerClass, in parseSequence()
232 BerDataValue dataValue; in parseSequence()
285 private static <T> List<T> parseSetOf(BerDataValue container, Class<T> elementClass) in parseSetOf()
290 BerDataValue dataValue; in parseSetOf()
[all …]
/tools/apksig/src/test/java/com/android/apksig/internal/asn1/ber/
DBerDataValueTest.java35 private static final BerDataValue TEST_VALUE1 =
36 new BerDataValue(
43 private static final BerDataValue TEST_VALUE2 =
44 new BerDataValue(
111 BerDataValue dataValue = in testContentsReader()
112 new BerDataValue( in testContentsReader()
DBerDataValueReaderTestBase.java59 BerDataValue dataValue = readDataValue("1000"); in testSingleByteTagId()
271 private BerDataValue readDataValue(byte[] input) in readDataValue()
276 private BerDataValue readDataValue(String hexEncodedInput) in readDataValue()
/tools/apksig/src/main/java/com/android/apksig/internal/asn1/ber/
DBerDataValue.java24 public class BerDataValue { class
31 BerDataValue( in BerDataValue() method in BerDataValue
99 private final BerDataValue mValue;
102 public ParsedValueReader(BerDataValue value) { in ParsedValueReader()
107 public BerDataValue readDataValue() throws BerDataValueFormatException { in readDataValue()
DInputStreamBerDataValueReader.java39 public BerDataValue readDataValue() throws BerDataValueFormatException { in readDataValue()
49 private static BerDataValue readDataValue(InputStream input) in readDataValue()
91 return new BerDataValue( in readDataValue()
215 BerDataValue dataValue = readDataValue(in); in skipConstructedIndefiniteLengthContents()
DByteBufferBerDataValueReader.java36 public BerDataValue readDataValue() throws BerDataValueFormatException { in readDataValue()
85 return new BerDataValue( in readDataValue()
DBerDataValueReader.java33 BerDataValue readDataValue() throws BerDataValueFormatException; in readDataValue()