Home
last modified time | relevance | path

Searched refs:tagged (Results 1 – 25 of 258) sorted by relevance

1234567891011

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
DSignedData.java140 ASN1TaggedObject tagged = ASN1TaggedObject.getInstance(obj); in calculateVersion() local
142 if (tagged.getTagNo() == 1) in calculateVersion()
146 else if (tagged.getTagNo() == 2) in calculateVersion()
150 else if (tagged.getTagNo() == 3) in calculateVersion()
238 ASN1TaggedObject tagged = (ASN1TaggedObject)o; in SignedData() local
240 switch (tagged.getTagNo()) in SignedData()
243 certsBer = tagged instanceof BERTaggedObject; in SignedData()
244 certificates = ASN1Set.getInstance(tagged, false); in SignedData()
247 crlsBer = tagged instanceof BERTaggedObject; in SignedData()
248 crls = ASN1Set.getInstance(tagged, false); in SignedData()
[all …]
DCMSAlgorithmProtection.java71 ASN1TaggedObject tagged = ASN1TaggedObject.getInstance(sequence.getObjectAt(1)); in CMSAlgorithmProtection() local
72 if (tagged.getTagNo() == 1) in CMSAlgorithmProtection()
74 this.signatureAlgorithm = AlgorithmIdentifier.getInstance(tagged, false); in CMSAlgorithmProtection()
77 else if (tagged.getTagNo() == 2) in CMSAlgorithmProtection()
81 this.macAlgorithm = AlgorithmIdentifier.getInstance(tagged, false); in CMSAlgorithmProtection()
85 throw new IllegalArgumentException("Unknown tag found: " + tagged.getTagNo()); in CMSAlgorithmProtection()
DContentInfo.java86 ASN1TaggedObject tagged = (ASN1TaggedObject)seq.getObjectAt(1); in ContentInfo() local
87 if (!tagged.isExplicit() || tagged.getTagNo() != 0) in ContentInfo()
92 content = tagged.getObject(); in ContentInfo()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/cms/
DSignedData.java142 ASN1TaggedObject tagged = ASN1TaggedObject.getInstance(obj); in calculateVersion() local
144 if (tagged.getTagNo() == 1) in calculateVersion()
148 else if (tagged.getTagNo() == 2) in calculateVersion()
152 else if (tagged.getTagNo() == 3) in calculateVersion()
240 ASN1TaggedObject tagged = (ASN1TaggedObject)o; in SignedData() local
242 switch (tagged.getTagNo()) in SignedData()
245 certsBer = tagged instanceof BERTaggedObject; in SignedData()
246 certificates = ASN1Set.getInstance(tagged, false); in SignedData()
249 crlsBer = tagged instanceof BERTaggedObject; in SignedData()
250 crls = ASN1Set.getInstance(tagged, false); in SignedData()
[all …]
DCMSAlgorithmProtection.java73 ASN1TaggedObject tagged = ASN1TaggedObject.getInstance(sequence.getObjectAt(1)); in CMSAlgorithmProtection() local
74 if (tagged.getTagNo() == 1) in CMSAlgorithmProtection()
76 this.signatureAlgorithm = AlgorithmIdentifier.getInstance(tagged, false); in CMSAlgorithmProtection()
79 else if (tagged.getTagNo() == 2) in CMSAlgorithmProtection()
83 this.macAlgorithm = AlgorithmIdentifier.getInstance(tagged, false); in CMSAlgorithmProtection()
87 throw new IllegalArgumentException("Unknown tag found: " + tagged.getTagNo()); in CMSAlgorithmProtection()
DContentInfo.java88 ASN1TaggedObject tagged = (ASN1TaggedObject)seq.getObjectAt(1); in ContentInfo() local
89 if (!tagged.isExplicit() || tagged.getTagNo() != 0) in ContentInfo()
94 content = tagged.getObject(); in ContentInfo()
/external/wpa_supplicant_8/src/ap/
Dvlan_full.c465 int untagged, *tagged, i, notempty; in vlan_newlink() local
482 tagged = vlan->vlan_desc.tagged; in vlan_newlink()
498 for (i = 0; i < MAX_NUM_TAGGED_VLAN && tagged[i]; i++) { in vlan_newlink()
499 if (tagged[i] == untagged || in vlan_newlink()
500 tagged[i] <= 0 || tagged[i] > MAX_VLAN_ID || in vlan_newlink()
501 (i > 0 && tagged[i] == tagged[i - 1])) in vlan_newlink()
503 vlan_bridge_name(br_name, hapd, vlan, tagged[i]); in vlan_newlink()
504 vlan_get_bridge(br_name, hapd, tagged[i]); in vlan_newlink()
506 ifname, br_name, tagged[i], hapd); in vlan_newlink()
586 int *tagged = vlan->vlan_desc.tagged; in vlan_dellink() local
[all …]
Dvlan.c30 if (a->tagged[i] != b->tagged[i]) in vlan_compare()
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/asn1/cms/
DSignedData.java142 ASN1TaggedObject tagged = ASN1TaggedObject.getInstance(obj); in calculateVersion() local
144 if (tagged.getTagNo() == 1) in calculateVersion()
148 else if (tagged.getTagNo() == 2) in calculateVersion()
152 else if (tagged.getTagNo() == 3) in calculateVersion()
240 ASN1TaggedObject tagged = (ASN1TaggedObject)o; in SignedData() local
242 switch (tagged.getTagNo()) in SignedData()
245 certsBer = tagged instanceof BERTaggedObject; in SignedData()
246 certificates = ASN1Set.getInstance(tagged, false); in SignedData()
249 crlsBer = tagged instanceof BERTaggedObject; in SignedData()
250 crls = ASN1Set.getInstance(tagged, false); in SignedData()
[all …]
DCMSAlgorithmProtection.java73 ASN1TaggedObject tagged = ASN1TaggedObject.getInstance(sequence.getObjectAt(1)); in CMSAlgorithmProtection() local
74 if (tagged.getTagNo() == 1) in CMSAlgorithmProtection()
76 this.signatureAlgorithm = AlgorithmIdentifier.getInstance(tagged, false); in CMSAlgorithmProtection()
79 else if (tagged.getTagNo() == 2) in CMSAlgorithmProtection()
83 this.macAlgorithm = AlgorithmIdentifier.getInstance(tagged, false); in CMSAlgorithmProtection()
87 throw new IllegalArgumentException("Unknown tag found: " + tagged.getTagNo()); in CMSAlgorithmProtection()
DContentInfo.java88 ASN1TaggedObject tagged = (ASN1TaggedObject)seq.getObjectAt(1); in ContentInfo() local
89 if (!tagged.isExplicit() || tagged.getTagNo() != 0) in ContentInfo()
94 content = tagged.getObject(); in ContentInfo()
/external/apache-commons-io/src/test/java/org/apache/commons/io/
DTaggedIOExceptionTest.java38 final TaggedIOException tagged = new TaggedIOException(exception, tag); in testTaggedIOException() local
39 assertTrue(TaggedIOException.isTaggedWith(tagged, tag)); in testTaggedIOException()
40 assertFalse(TaggedIOException.isTaggedWith(tagged, UUID.randomUUID())); in testTaggedIOException()
41 assertEquals(exception, tagged.getCause()); in testTaggedIOException()
42 assertEquals(exception.getMessage(), tagged.getMessage()); in testTaggedIOException()
/external/rust/crates/serde_cbor/examples/
Dtags.rs20 let tagged = Tagged::<String>::deserialize(deserializer)?; in deserialize() localVariable
21 match tagged.tag { in deserialize()
22 Some(0) | None => Ok(Date(tagged.value)), in deserialize()
39 let tagged = Tagged::<String>::deserialize(deserializer)?; in deserialize() localVariable
40 match tagged.tag { in deserialize()
42 Some(0) | None => Ok(Uri(tagged.value)), in deserialize()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
DSignedData.java79 ASN1TaggedObject tagged = (ASN1TaggedObject)o; in SignedData() local
81 switch (tagged.getTagNo()) in SignedData()
84 certificates = ASN1Set.getInstance(tagged, false); in SignedData()
87 crls = ASN1Set.getInstance(tagged, false); in SignedData()
90 throw new IllegalArgumentException("unknown tag value " + tagged.getTagNo()); in SignedData()
DPrivateKeyInfo.java143 ASN1TaggedObject tagged = (ASN1TaggedObject)e.nextElement(); in PrivateKeyInfo() local
145 int tag = tagged.getTagNo(); in PrivateKeyInfo()
157 this.attributes = ASN1Set.getInstance(tagged, false); in PrivateKeyInfo()
167 this.publicKey = DERBitString.getInstance(tagged, false); in PrivateKeyInfo()
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/asn1/pkcs/
DSignedData.java81 ASN1TaggedObject tagged = (ASN1TaggedObject)o; in SignedData() local
83 switch (tagged.getTagNo()) in SignedData()
86 certificates = ASN1Set.getInstance(tagged, false); in SignedData()
89 crls = ASN1Set.getInstance(tagged, false); in SignedData()
92 throw new IllegalArgumentException("unknown tag value " + tagged.getTagNo()); in SignedData()
DPrivateKeyInfo.java145 ASN1TaggedObject tagged = (ASN1TaggedObject)e.nextElement(); in PrivateKeyInfo() local
147 int tag = tagged.getTagNo(); in PrivateKeyInfo()
159 this.attributes = ASN1Set.getInstance(tagged, false); in PrivateKeyInfo()
169 this.publicKey = DERBitString.getInstance(tagged, false); in PrivateKeyInfo()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/pkcs/
DSignedData.java81 ASN1TaggedObject tagged = (ASN1TaggedObject)o; in SignedData() local
83 switch (tagged.getTagNo()) in SignedData()
86 certificates = ASN1Set.getInstance(tagged, false); in SignedData()
89 crls = ASN1Set.getInstance(tagged, false); in SignedData()
92 throw new IllegalArgumentException("unknown tag value " + tagged.getTagNo()); in SignedData()
DPrivateKeyInfo.java145 ASN1TaggedObject tagged = (ASN1TaggedObject)e.nextElement(); in PrivateKeyInfo() local
147 int tag = tagged.getTagNo(); in PrivateKeyInfo()
159 this.attributes = ASN1Set.getInstance(tagged, false); in PrivateKeyInfo()
169 this.publicKey = DERBitString.getInstance(tagged, false); in PrivateKeyInfo()
/external/rust/crates/der-parser/src/ber/
Dmod.rs56 mod tagged; module
64 pub use crate::ber::tagged::*;
/external/rust/crates/der-parser/src/der/
Dmod.rs60 mod tagged; module
63 pub use crate::der::tagged::*;
/external/dagger2/util/
Ddeploy-to-maven-central.sh38 bash $(dirname $0)/publish-tagged-release.sh $VERSION_NAME
42 bash $(dirname $0)/publish-tagged-docs.sh $VERSION_NAME
/external/oj-libjdwp/make/data/jdwp/
Djdwp.spec1145 (tagged-object exception "The thrown exception.")
1220 (tagged-object newObject "The newly created object, or null "
1222 (tagged-object exception "The thrown exception, if any; otherwise, null.")
1244 (tagged-object newArray "The newly created array object. ")
1319 (tagged-object exception "The thrown exception.")
1661 (tagged-object exception "The thrown exception, if any.")
1752 (tagged-object instance "An object that references this object.")
1936 (tagged-object monitor "An owned monitor")
1959 (tagged-object monitor "The contended monitor, or null if "
2032 (tagged-object monitor "An owned monitor")
[all …]
/external/python/cpython2/Lib/test/
Dtest_import.py623 if os.path.exists(self.tagged):
624 shutil.rmtree(self.tagged)
631 os.mkdir(self.tagged)
632 init_file = os.path.join(self.tagged, '__init__.py')
638 symlink_support.symlink(self.tagged, self.package_name)
644 def tagged(self): member in TestSymbolicallyLinkedPackage
664 if os.path.exists(self.tagged):
665 shutil.rmtree(self.tagged)
/external/curl/scripts/
Ddelta92 $tagged=`git for-each-ref --format="%(refname:short) | %(taggerdate:unix)" refs/tags/* | grep ^$sta…
96 $elapsed=$now - $tagged; # number of seconds since tag

1234567891011