/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/ |
D | SignedData.java | 140 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 …]
|
D | CMSAlgorithmProtection.java | 71 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()
|
D | ContentInfo.java | 86 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/ |
D | vlan_full.c | 423 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 …]
|
D | vlan.c | 30 if (a->tagged[i] != b->tagged[i]) in vlan_compare()
|
D | ieee802_11_auth.c | 511 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()
|
D | vlan.h | 17 int tagged[MAX_NUM_TAGGED_VLAN]; /* first k items, ascending order */ member
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/ |
D | SignedData.java | 79 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/ |
D | builtins-sharedarraybuffer.cc | 30 void ValidateSharedTypedArray(CodeStubAssembler* a, compiler::Node* tagged, in ValidateSharedTypedArray() argument 40 a->Branch(a->TaggedIsSmi(tagged), &is_smi, ¬_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/ |
D | layout-descriptor.cc | 186 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()
|
D | layout-descriptor-inl.h | 64 LayoutDescriptor* LayoutDescriptor::SetTagged(int field_index, bool tagged) { in SetTagged() argument 76 if (tagged) { in SetTagged() 85 if (tagged) { in SetTagged()
|
D | layout-descriptor.h | 94 LayoutDescriptor* SetTaggedForTesting(int field_index, bool tagged); 131 bool tagged);
|
/external/oj-libjdwp/make/data/jdwp/ |
D | jdwp.spec | 1145 (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/ |
D | test_import.py | 624 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/ |
D | color.md | 88 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/ |
D | color.md | 88 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__.py | 815 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/ |
D | ethertypes | 30 802_1Q 8100 8021q 1q 802.1q dot1q # 802.1Q Virtual LAN tagged frame
|
/external/googletest/googletest/docs/ |
D | XcodeGuide.md | 21 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/ |
D | merge-mapcoords.xsl | 54 <xsl:value-of select="concat('Warning: unable to locate area tagged ', ($anchor)/@x_steal)"/>
|
/external/tcpdump/tests/ |
D | radius-rfc4675-v.out | 4 User-Name Attribute (1), length: 12, Value: bob-tagged
|
/external/tensorflow/ |
D | ISSUE_TEMPLATE.md | 3 https://stackoverflow.com/questions/tagged/tensorflow
|
/external/wpa_supplicant_8/src/radius/ |
D | radius.c | 1451 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/ |
D | readme.md | 54 [`flatbuffers` tag]: https://stackoverflow.com/questions/tagged/flatbuffers
|
/external/e2fsprogs/lib/et/test_cases/ |
D | imap_err.et | 122 # Following used for internationalization of tagged OK response
|