Home
last modified time | relevance | path

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

12345

/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/wpa_supplicant_8/src/ap/
Dvlan_full.c423 int untagged, *tagged, i, notempty; in vlan_newlink() local
440 tagged = vlan->vlan_desc.tagged; in vlan_newlink()
456 for (i = 0; i < MAX_NUM_TAGGED_VLAN && tagged[i]; i++) { in vlan_newlink()
457 if (tagged[i] == untagged || in vlan_newlink()
458 tagged[i] <= 0 || tagged[i] > MAX_VLAN_ID || in vlan_newlink()
459 (i > 0 && tagged[i] == tagged[i - 1])) in vlan_newlink()
461 vlan_bridge_name(br_name, hapd, tagged[i]); in vlan_newlink()
462 vlan_get_bridge(br_name, hapd, tagged[i]); in vlan_newlink()
464 ifname, br_name, tagged[i], hapd); in vlan_newlink()
537 int *tagged = vlan->vlan_desc.tagged; in vlan_dellink() local
[all …]
Dvlan.c30 if (a->tagged[i] != b->tagged[i]) in vlan_compare()
Dieee802_11_auth.c511 int *untagged, *tagged, *notempty; in hostapd_acl_recv_radius() local
571 tagged = cache->vlan_id.tagged; in hostapd_acl_recv_radius()
574 tagged); in hostapd_acl_recv_radius()
604 cache->vlan_id.tagged[0] ? "+" : ""); in hostapd_acl_recv_radius()
Dvlan.h17 int tagged[MAX_NUM_TAGGED_VLAN]; /* first k items, ascending order */ member
/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()
/external/v8/src/builtins/
Dbuiltins-sharedarraybuffer.cc30 void ValidateSharedTypedArray(CodeStubAssembler* a, compiler::Node* tagged, in ValidateSharedTypedArray() argument
40 a->Branch(a->TaggedIsSmi(tagged), &is_smi, &not_smi); in ValidateSharedTypedArray()
46 a->Branch(a->Word32Equal(a->LoadInstanceType(tagged), in ValidateSharedTypedArray()
54 Node* array_buffer = a->LoadObjectField(tagged, JSTypedArray::kBufferOffset); in ValidateSharedTypedArray()
65 a->LoadObjectField(tagged, JSObject::kElementsOffset)); in ValidateSharedTypedArray()
80 tagged); in ValidateSharedTypedArray()
90 a->LoadObjectField(tagged, JSArrayBufferView::kByteOffsetOffset))); in ValidateSharedTypedArray()
97 compiler::Node* tagged, in ConvertTaggedAtomicIndexToWord32() argument
103 Node* number_index = a->CallStub(to_number, context, tagged); in ConvertTaggedAtomicIndexToWord32()
/external/v8/src/
Dlayout-descriptor.cc186 bool tagged) { in SetTaggedForTesting() argument
187 return SetTagged(field_index, tagged); in SetTaggedForTesting()
205 bool tagged = layout_descriptor_->IsTagged(field_index, max_sequence_length, in IsTagged() local
211 if (tagged) { in IsTagged()
225 return tagged; in IsTagged()
Dlayout-descriptor-inl.h64 LayoutDescriptor* LayoutDescriptor::SetTagged(int field_index, bool tagged) { in SetTagged() argument
76 if (tagged) { in SetTagged()
85 if (tagged) { in SetTagged()
Dlayout-descriptor.h94 LayoutDescriptor* SetTaggedForTesting(int field_index, bool tagged);
131 bool tagged);
/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.py624 if os.path.exists(self.tagged):
625 shutil.rmtree(self.tagged)
632 os.mkdir(self.tagged)
633 init_file = os.path.join(self.tagged, '__init__.py')
639 symlink_support.symlink(self.tagged, self.package_name)
645 def tagged(self): member in TestSymbolicallyLinkedPackage
665 if os.path.exists(self.tagged):
666 shutil.rmtree(self.tagged)
/external/skia/site/user/sample/
Dcolor.md88 that they are tagged with a color space.
110 that are tagged with color spaces.
115 // Will be tagged with the color space of the encoded data
152 them to be tagged with color spaces.
/external/skqp/site/user/sample/
Dcolor.md88 that they are tagged with a color space.
110 that are tagged with color spaces.
115 // Will be tagged with the color space of the encoded data
152 them to be tagged with color spaces.
/external/python/cpython3/Lib/test/test_import/
D__init__.py815 tagged = package_name + '-tagged' variable in TestSymbolicallyLinkedPackage
818 test.support.rmtree(self.tagged)
824 os.mkdir(self.tagged)
825 self.addCleanup(test.support.rmtree, self.tagged)
826 init_file = os.path.join(self.tagged, '__init__.py')
832 os.symlink(self.tagged, self.package_name, target_is_directory=True)
/external/iptables/etc/
Dethertypes30 802_1Q 8100 8021q 1q 802.1q dot1q # 802.1Q Virtual LAN tagged frame
/external/googletest/googletest/docs/
DXcodeGuide.md21 Currently, the gtest.framework discussed here isn't available in a tagged release of Google Test, i…
29 …n you make a release. However, keeping it outside the trunk in a version-tagged directory called s…
31 …ulti-line) property simpler. This same method can be used to check out a tagged branch, by using t…
/external/wayland/doc/publican/
Dmerge-mapcoords.xsl54 <xsl:value-of select="concat('Warning: unable to locate area tagged ', ($anchor)/@x_steal)"/>
/external/tcpdump/tests/
Dradius-rfc4675-v.out4 User-Name Attribute (1), length: 12, Value: bob-tagged
/external/tensorflow/
DISSUE_TEMPLATE.md3 https://stackoverflow.com/questions/tagged/tensorflow
/external/wpa_supplicant_8/src/radius/
Dradius.c1451 int *tagged) in radius_msg_get_vlanid() argument
1463 tagged[j] = 0; in radius_msg_get_vlanid()
1515 else if (data[0] == 0x31 && tagged && in radius_msg_get_vlanid()
1517 tagged[taggedidx++] = vlan_id; in radius_msg_get_vlanid()
1535 qsort(tagged, taggedidx, sizeof(int), cmp_int); in radius_msg_get_vlanid()
/external/flatbuffers/
Dreadme.md54 [`flatbuffers` tag]: https://stackoverflow.com/questions/tagged/flatbuffers
/external/e2fsprogs/lib/et/test_cases/
Dimap_err.et122 # Following used for internationalization of tagged OK response

12345