/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/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/cms/ |
D | SignedData.java | 142 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 …]
|
D | CMSAlgorithmProtection.java | 73 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()
|
D | ContentInfo.java | 88 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/ |
D | vlan_full.c | 465 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 …]
|
D | vlan.c | 30 if (a->tagged[i] != b->tagged[i]) in vlan_compare()
|
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()
|
D | PrivateKeyInfo.java | 144 ASN1TaggedObject tagged = (ASN1TaggedObject)e.nextElement(); in PrivateKeyInfo() local 146 int tag = tagged.getTagNo(); in PrivateKeyInfo() 158 this.attributes = ASN1Set.getInstance(tagged, false); in PrivateKeyInfo() 168 this.publicKey = DERBitString.getInstance(tagged, false); in PrivateKeyInfo()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/pkcs/ |
D | SignedData.java | 81 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()
|
D | PrivateKeyInfo.java | 148 ASN1TaggedObject tagged = (ASN1TaggedObject)e.nextElement(); in PrivateKeyInfo() local 150 int tag = tagged.getTagNo(); in PrivateKeyInfo() 162 this.attributes = ASN1Set.getInstance(tagged, false); in PrivateKeyInfo() 172 this.publicKey = DERBitString.getInstance(tagged, false); in PrivateKeyInfo()
|
/external/v8/src/builtins/ |
D | builtins-sharedarraybuffer-gen.cc | 25 void ValidateSharedTypedArray(Node* tagged, Node* context, 28 Node* ConvertTaggedAtomicIndexToWord32(Node* tagged, Node* context, 41 Node* tagged, Node* context, Node** out_instance_type, in ValidateSharedTypedArray() argument 46 GotoIf(TaggedIsSmi(tagged), &invalid); in ValidateSharedTypedArray() 49 GotoIfNot(InstanceTypeEqual(LoadInstanceType(tagged), JS_TYPED_ARRAY_TYPE), in ValidateSharedTypedArray() 53 Node* array_buffer = LoadObjectField(tagged, JSTypedArray::kBufferOffset); in ValidateSharedTypedArray() 59 Node* elements_instance_type = LoadInstanceType(LoadElements(tagged)); in ValidateSharedTypedArray() 73 tagged); in ValidateSharedTypedArray() 82 context, LoadObjectField(tagged, JSArrayBufferView::kByteOffsetOffset))); in ValidateSharedTypedArray() 89 Node* tagged, Node* context, Node** number_index) { in ConvertTaggedAtomicIndexToWord32() argument [all …]
|
/external/v8/src/ |
D | layout-descriptor.cc | 191 bool tagged) { in SetTaggedForTesting() argument 192 return SetTagged(field_index, tagged); in SetTaggedForTesting() 210 bool tagged = layout_descriptor_->IsTagged(field_index, max_sequence_length, in IsTagged() local 216 if (tagged) { in IsTagged() 230 return tagged; in IsTagged()
|
D | layout-descriptor-inl.h | 69 LayoutDescriptor* LayoutDescriptor::SetTagged(int field_index, bool tagged) { in SetTagged() argument 78 if (tagged) { in SetTagged() 87 if (tagged) { in SetTagged()
|
D | layout-descriptor.h | 96 LayoutDescriptor* SetTaggedForTesting(int field_index, bool tagged); 141 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 | 623 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/bcc/examples/networking/vlan_filter/ |
D | test_setup.sh | 69 ip netns exec netns3 bridge vlan add vid 100 tagged dev vethx 70 ip netns exec netns3 bridge vlan add vid 200 tagged dev vethx 76 ip netns exec netns4 bridge vlan add vid 100 tagged dev vethy 77 ip netns exec netns4 bridge vlan add vid 200 tagged dev vethy
|
/external/grpc-grpc-java/examples/ |
D | WORKSPACE | 3 # For released versions, use the tagged git-repository:
|
/external/elfutils/config/ |
D | upload-release.sh | 19 echo Make sure the git repo is tagged, signed and pushed
|
/external/u-boot/doc/ |
D | README.VLAN | 4 You control the sending/receiving of VLAN tagged packets with the
|
/external/tensorflow/.github/ISSUE_TEMPLATE/ |
D | 50-other-issues.md | 9 …in TensorFlow, please go to [StackOverflow](https://stackoverflow.com/questions/tagged/tensorflow).
|
/external/skia/src/compute/skc/platforms/cl_12/kernels/ |
D | paths_reclaim.cl | 218 // shift away the tagged block id's tag 244 // a subgroup as invalid tagged block ids 326 // shift away the tagged block id's tag
|