Home
last modified time | relevance | path

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

/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
DSPVerifier.java13 import com.android.hotspot2.asn1.Asn1Object;
95 Iterator<Asn1Object> children = sequence.getChildren().iterator(); in LogoTypeImage()
97 Iterator<Asn1Object> logoTypeDetails = in LogoTypeImage()
102 for (Asn1Object hash : hashes.getChildren()) { in LogoTypeImage()
106 for (Asn1Object url : urls.getChildren()) { in LogoTypeImage()
117 Iterator<Asn1Object> imageInfo = in LogoTypeImage()
120 Asn1Object first = imageInfo.next(); in LogoTypeImage()
131 Asn1Object next = imageInfo.next(); in LogoTypeImage()
197 Iterator<Asn1Object> children = sequence.getChildren().iterator(); in HashAlgAndValue()
223 private static <T extends Asn1Object> T castObject(Asn1Object object, Class<T> klass) in castObject()
[all …]
/frameworks/base/packages/Osu/src/com/android/hotspot2/est/
DESTHandler.java13 import com.android.hotspot2.asn1.Asn1Object;
131 Collection<Asn1Object> pkcs7Content1 = Asn1Decoder.decode(octetBuffer); in execute()
132 for (Asn1Object asn1Object : pkcs7Content1) { in execute()
207 Collection<Asn1Object> o = Asn1Decoder.decode(ByteBuffer.wrap(csrData)); in execute()
218 Collection<Asn1Object> pkcs7Content2 = Asn1Decoder.decode(octetBuffer); in execute()
219 for (Asn1Object asn1Object : pkcs7Content2) { in execute()
237 Collection<Asn1Object> pkcs7Content = Asn1Decoder.decode(pkcs7); in unpackPkcs7()
243 Asn1Object data = pkcs7Content.iterator().next(); in unpackPkcs7()
251 Iterator<Asn1Object> children = data.getChildren().iterator(); in unpackPkcs7()
252 Asn1Object contentType = children.next(); in unpackPkcs7()
[all …]
/frameworks/base/packages/Osu/src/com/android/hotspot2/asn1/
DAsn1Constructed.java6 public class Asn1Constructed extends Asn1Object {
8 private final List<Asn1Object> mChildren;
17 public void addChild(Asn1Object object) { in addChild()
22 public Collection<Asn1Object> getChildren() { in getChildren()
32 for (Asn1Object child : mChildren) { in toString()
DAsn1Object.java6 public abstract class Asn1Object { class
13 protected Asn1Object(int tag, Asn1Class asn1Class, boolean constructed, int length) { in Asn1Object() method in Asn1Object
17 protected Asn1Object(int tag, Asn1Class asn1Class, boolean constructed, in Asn1Object() method in Asn1Object
82 public abstract Collection<Asn1Object> getChildren(); in getChildren()
DAsn1Boolean.java6 public class Asn1Boolean extends Asn1Object {
23 public Collection<Asn1Object> getChildren() { in getChildren()
DAsn1String.java8 public class Asn1String extends Asn1Object {
26 public Collection<Asn1Object> getChildren() { in getChildren()
DAsn1Octets.java6 public class Asn1Octets extends Asn1Object {
29 public Collection<Asn1Object> getChildren() { in getChildren()
DAsn1Integer.java7 public class Asn1Integer extends Asn1Object {
44 public Collection<Asn1Object> getChildren() { in getChildren()
DAsn1Oid.java11 public class Asn1Oid extends Asn1Object {
107 public Collection<Asn1Object> getChildren() { in getChildren()
DAsn1Decoder.java86 public static Collection<Asn1Object> decode(ByteBuffer data) throws DecodeException { in decode()
137 private static Asn1Object buildScalar(int tag, Asn1Class asn1Class, int length, ByteBuffer data) in buildScalar()