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

  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
DERTaggedObject.java 64 out.writeEncoded(CONSTRUCTED | TAGGED | tagNo, bytes);
69 // need to mark constructed types...
71 if ((bytes[0] & CONSTRUCTED) != 0)
73 bytes[0] = (byte)(CONSTRUCTED | TAGGED | tagNo);
85 out.writeEncoded(CONSTRUCTED | TAGGED | tagNo, new byte[0]);
ASN1InputStream.java 172 case SEQUENCE | CONSTRUCTED:
185 case SET | CONSTRUCTED:
235 case OCTET_STRING | CONSTRUCTED:
250 if ((tag & CONSTRUCTED) == 0)
265 if ((tag & CONSTRUCTED) == 0)
397 case SEQUENCE | CONSTRUCTED:
412 case SET | CONSTRUCTED:
427 case OCTET_STRING | CONSTRUCTED:
438 if ((tag & CONSTRUCTED) == 0)
446 // either constructed or explicitly tagge
    [all...]
BERConstructedSequence.java 20 out.write(SEQUENCE | CONSTRUCTED);
BERInputStream.java 101 case SEQUENCE | CONSTRUCTED:
116 case OCTET_STRING | CONSTRUCTED:
118 case SET | CONSTRUCTED:
147 if ((tag & CONSTRUCTED) == 0)
155 // either constructed or explicitly tagged
BERSequence.java 42 out.write(SEQUENCE | CONSTRUCTED);
DERConstructedSequence.java 27 * As DER requires the constructed, definite-length model to
30 * we also have to specify CONSTRUCTED, and the objects length.
51 out.writeEncoded(SEQUENCE | CONSTRUCTED, bytes);
DERApplicationSpecific.java 28 this.tag = tag | DERTags.CONSTRUCTED;
40 return (tag & DERTags.CONSTRUCTED) != 0;
BERSet.java 52 out.write(SET | CONSTRUCTED);
DERConstructedSet.java 53 * As DER requires the constructed, definite-length model to
56 * we also have to specify CONSTRUCTED, and the objects length.
77 out.writeEncoded(SET | CONSTRUCTED, bytes);
DERInputStream.java 109 case SEQUENCE | CONSTRUCTED:
127 case SET | CONSTRUCTED:
198 if ((tag & CONSTRUCTED) == 0)
213 if ((tag & CONSTRUCTED) == 0)
DERSequence.java 53 * As DER requires the constructed, definite-length model to
56 * we also have to specify CONSTRUCTED, and the objects length.
77 out.writeEncoded(SEQUENCE | CONSTRUCTED, bytes);
DERTags.java 33 public static final int CONSTRUCTED = 0x20;
BERTaggedObject.java 54 out.write(CONSTRUCTED | TAGGED | tagNo);
DERSet.java 73 * As DER requires the constructed, definite-length model to
76 * we also have to specify CONSTRUCTED, and the objects length.
97 out.writeEncoded(SET | CONSTRUCTED, bytes);
BERConstructedOctetString.java 124 out.write(CONSTRUCTED | OCTET_STRING);
  /external/tcpdump/
print-snmp.c 251 "Constructed",
252 #define CONSTRUCTED 1
620 case CONSTRUCTED:
    [all...]

Completed in 61 milliseconds