HomeSort by relevance Sort by last modified time
    Searched refs:Asn1Object (Results 1 - 10 of 10) sorted by null

  /frameworks/base/packages/Osu/src/com/android/hotspot2/asn1/
Asn1Constructed.java 6 public class Asn1Constructed extends Asn1Object {
8 private final List<Asn1Object> mChildren;
17 public void addChild(Asn1Object object) {
22 public Collection<Asn1Object> getChildren() {
32 for (Asn1Object child : mChildren) {
Asn1Boolean.java 6 public class Asn1Boolean extends Asn1Object {
23 public Collection<Asn1Object> getChildren() {
Asn1Octets.java 6 public class Asn1Octets extends Asn1Object {
29 public Collection<Asn1Object> getChildren() {
Asn1String.java 8 public class Asn1String extends Asn1Object {
26 public Collection<Asn1Object> getChildren() {
Asn1Object.java 6 public abstract class Asn1Object {
13 protected Asn1Object(int tag, Asn1Class asn1Class, boolean constructed, int length) {
17 protected Asn1Object(int tag, Asn1Class asn1Class, boolean constructed,
82 public abstract Collection<Asn1Object> getChildren();
Asn1Integer.java 7 public class Asn1Integer extends Asn1Object {
44 public Collection<Asn1Object> getChildren() {
Asn1Decoder.java 86 public static Collection<Asn1Object> decode(ByteBuffer data) throws DecodeException {
137 private static Asn1Object buildScalar(int tag, Asn1Class asn1Class, int length, ByteBuffer data)
Asn1Oid.java 11 public class Asn1Oid extends Asn1Object {
107 public Collection<Asn1Object> getChildren() {
  /frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
SPVerifier.java 13 import com.android.hotspot2.asn1.Asn1Object;
94 Iterator<Asn1Object> children = sequence.getChildren().iterator();
96 Iterator<Asn1Object> logoTypeDetails =
101 for (Asn1Object hash : hashes.getChildren()) {
105 for (Asn1Object url : urls.getChildren()) {
116 Iterator<Asn1Object> imageInfo =
119 Asn1Object first = imageInfo.next();
130 Asn1Object next = imageInfo.next();
196 Iterator<Asn1Object> children = sequence.getChildren().iterator();
222 private static <T extends Asn1Object> T castObject(Asn1Object object, Class<T> klass
    [all...]
  /frameworks/base/packages/Osu/src/com/android/hotspot2/est/
ESTHandler.java 13 import com.android.hotspot2.asn1.Asn1Object;
130 Collection<Asn1Object> pkcs7Content1 = Asn1Decoder.decode(octetBuffer);
131 for (Asn1Object asn1Object : pkcs7Content1) {
133 Log.d(TAG, asn1Object.toString());
168 Collection<Asn1Object> pkcs7Content = Asn1Decoder.decode(octetBuffer);
169 for (Asn1Object asn1Object : pkcs7Content) {
170 Log.d(TAG, asn1Object);
179 Asn1Object certObject = pkcs7Root.findObject(certPath)
    [all...]

Completed in 3739 milliseconds