HomeSort by relevance Sort by last modified time
    Searched refs:tagged (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/wpa_supplicant_8/src/ap/
vlan.c 30 if (a->tagged[i] != b->tagged[i])
vlan.h 17 int tagged[MAX_NUM_TAGGED_VLAN]; /* first k items, ascending order */ member in struct:vlan_description
vlan_full.c 423 int untagged, *tagged, i, notempty; local
440 tagged = vlan->vlan_desc.tagged;
456 for (i = 0; i < MAX_NUM_TAGGED_VLAN && tagged[i]; i++) {
457 if (tagged[i] == untagged ||
458 tagged[i] <= 0 || tagged[i] > MAX_VLAN_ID ||
459 (i > 0 && tagged[i] == tagged[i - 1]))
461 vlan_bridge_name(br_name, hapd, tagged[i])
537 int *tagged = vlan->vlan_desc.tagged; local
    [all...]
  /build/make/tools/droiddoc/templates-pdk/assets/
android-developer-resource-browser.css 15 #resource-browser-results .tagged-article {
19 #resource-browser-results .tagged-sample {
23 #resource-browser-results .tagged-tutorial {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
CMSAlgorithmProtection.java 71 ASN1TaggedObject tagged = ASN1TaggedObject.getInstance(sequence.getObjectAt(1)); local
72 if (tagged.getTagNo() == 1)
74 this.signatureAlgorithm = AlgorithmIdentifier.getInstance(tagged, false);
77 else if (tagged.getTagNo() == 2)
81 this.macAlgorithm = AlgorithmIdentifier.getInstance(tagged, false);
85 throw new IllegalArgumentException("Unknown tag found: " + tagged.getTagNo());
ContentInfo.java 86 ASN1TaggedObject tagged = (ASN1TaggedObject)seq.getObjectAt(1); local
87 if (!tagged.isExplicit() || tagged.getTagNo() != 0)
92 content = tagged.getObject();
SignedData.java 140 ASN1TaggedObject tagged = ASN1TaggedObject.getInstance(obj); local
142 if (tagged.getTagNo() == 1)
146 else if (tagged.getTagNo() == 2)
150 else if (tagged.getTagNo() == 3)
238 ASN1TaggedObject tagged = (ASN1TaggedObject)o; local
240 switch (tagged.getTagNo())
243 certsBer = tagged instanceof BERTaggedObject;
244 certificates = ASN1Set.getInstance(tagged, false);
247 crlsBer = tagged instanceof BERTaggedObject;
248 crls = ASN1Set.getInstance(tagged, false)
    [all...]
  /cts/tests/tests/os/jni/
android_os_cts_TaggedPointer.cpp 38 uint32_t *tagged; local
46 tagged = (uint32_t *)tmp;
63 if (*tagged != PATTERN) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
SignedData.java 79 ASN1TaggedObject tagged = (ASN1TaggedObject)o; local
81 switch (tagged.getTagNo())
84 certificates = ASN1Set.getInstance(tagged, false);
87 crls = ASN1Set.getInstance(tagged, false);
90 throw new IllegalArgumentException("unknown tag value " + tagged.getTagNo());
  /libcore/ojluni/src/main/java/sun/security/x509/
EDIPartyName.java 125 DerOutputStream tagged = new DerOutputStream(); local
132 tagged.write(DerValue.createTag(DerValue.TAG_CONTEXT,
140 tagged.write(DerValue.createTag(DerValue.TAG_CONTEXT,
143 out.write(DerValue.tag_Sequence, tagged);
PolicyConstraintsExtension.java 85 DerOutputStream tagged = new DerOutputStream(); local
91 tagged.writeImplicit(DerValue.createTag(DerValue.TAG_CONTEXT,
97 tagged.writeImplicit(DerValue.createTag(DerValue.TAG_CONTEXT,
100 seq.write(DerValue.tag_Sequence, tagged);
IssuingDistributionPointExtension.java 391 DerOutputStream tagged = new DerOutputStream(); local
396 tagged.writeImplicit(DerValue.createTag(DerValue.TAG_CONTEXT, true,
403 tagged.writeImplicit(DerValue.createTag(DerValue.TAG_CONTEXT, false,
410 tagged.writeImplicit(DerValue.createTag(DerValue.TAG_CONTEXT, false,
417 tagged.writeImplicit(DerValue.createTag(DerValue.TAG_CONTEXT, false,
424 tagged.writeImplicit(DerValue.createTag(DerValue.TAG_CONTEXT, false,
431 tagged.writeImplicit(DerValue.createTag(DerValue.TAG_CONTEXT, false,
436 seq.write(DerValue.tag_Sequence, tagged);
DistributionPoint.java 281 DerOutputStream tagged = new DerOutputStream(); local
299 tagged.write(
307 tagged.writeImplicit(
314 tagged.writeImplicit(
318 out.write(DerValue.tag_Sequence, tagged);
PrivateKeyUsageExtension.java 91 DerOutputStream tagged = new DerOutputStream(); local
95 tagged.writeImplicit(DerValue.createTag(DerValue.TAG_CONTEXT,
101 tagged.writeImplicit(DerValue.createTag(DerValue.TAG_CONTEXT,
104 seq.write(DerValue.tag_Sequence, tagged);
NameConstraintsExtension.java 123 DerOutputStream tagged = new DerOutputStream(); local
127 tagged.writeImplicit(DerValue.createTag(DerValue.TAG_CONTEXT,
133 tagged.writeImplicit(DerValue.createTag(DerValue.TAG_CONTEXT,
136 seq.write(DerValue.tag_Sequence, tagged);
  /art/test/906-iterate-heap/src/art/
Test906.java 43 int tagged = iterateThroughHeapCount(HEAP_FILTER_OUT_UNTAGGED, null, Integer.MAX_VALUE); local
50 if (all != tagged + untagged) {
51 throw new IllegalStateException("Instances: " + all + " != " + tagged + " + " + untagged);
57 if (tagged != 6) {
58 throw new IllegalStateException(tagged + " tagged objects");
61 throw new IllegalStateException(tagged + " objects with tagged class");
63 if (all == tagged) {
64 throw new IllegalStateException("All objects tagged");
    [all...]
  /external/v8/src/builtins/
builtins-sharedarraybuffer.cc 30 void ValidateSharedTypedArray(CodeStubAssembler* a, compiler::Node* tagged,
40 a->Branch(a->TaggedIsSmi(tagged), &is_smi, &not_smi);
46 a->Branch(a->Word32Equal(a->LoadInstanceType(tagged),
54 Node* array_buffer = a->LoadObjectField(tagged, JSTypedArray::kBufferOffset);
65 a->LoadObjectField(tagged, JSObject::kElementsOffset));
80 tagged);
90 a->LoadObjectField(tagged, JSArrayBufferView::kByteOffsetOffset)));
97 compiler::Node* tagged,
103 Node* number_index = a->CallStub(to_number, context, tagged);
  /external/v8/src/
layout-descriptor.cc 32 // tagged.
135 // Out of bounds queries are considered tagged.
168 // The contiguous sequence of tagged fields lasts till the end of the
170 // field_index are tagged.
186 bool tagged) {
187 return SetTagged(field_index, tagged);
205 bool tagged = layout_descriptor_->IsTagged(field_index, max_sequence_length,
209 // Object headers do not contain non-tagged fields. Check if the contiguous
211 if (tagged) {
212 // First field is tagged, calculate end offset from there
    [all...]
layout-descriptor.h 15 // LayoutDescriptor is a bit vector defining which fields contain non-tagged
20 // field contains a non-tagged value and therefore must be skipped by GC.
21 // Otherwise the field is considered tagged. If the queried bit lays "outside"
22 // of the descriptor then the field is also considered tagged.
29 // Queries the contiguous region of fields that are either tagged or not.
30 // Returns true if the given field is tagged or false otherwise and writes
37 // Returns true if this is a layout of the object having only tagged fields.
69 // tagged (FastPointerLayout).
94 LayoutDescriptor* SetTaggedForTesting(int field_index, bool tagged);
131 bool tagged);
    [all...]
layout-descriptor-inl.h 64 LayoutDescriptor* LayoutDescriptor::SetTagged(int field_index, bool tagged) {
76 if (tagged) {
85 if (tagged) {
247 // Object headers do not contain non-tagged fields.
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
X509CertificatePair.java 272 DerOutputStream tagged = new DerOutputStream(); local
277 tagged.write(DerValue.createTag(DerValue.TAG_CONTEXT,
284 tagged.write(DerValue.createTag(DerValue.TAG_CONTEXT,
288 out.write(DerValue.tag_Sequence, tagged);
  /external/oj-libjdwp/make/data/jdwp/
jdwp.spec     [all...]
  /external/python/cpython2/Lib/test/
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')
637 # now create a symlink to the tagged package
638 # sample -> sample-tagged
639 symlink_support.symlink(self.tagged, self.package_name)
645 def tagged(self): member in class:TestSymbolicallyLinkedPackage
646 return self.package_name + '-tagged'
665 if os.path.exists(self.tagged)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_import.py 598 if os.path.exists(self.tagged):
599 shutil.rmtree(self.tagged)
606 os.mkdir(self.tagged)
607 init_file = os.path.join(self.tagged, '__init__.py')
611 # now create a symlink to the tagged package
612 # sample -> sample-tagged
613 symlink_support.symlink(self.tagged, self.package_name)
619 def tagged(self): member in class:TestSymbolicallyLinkedPackage
620 return self.package_name + '-tagged'
639 if os.path.exists(self.tagged)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_import.py 598 if os.path.exists(self.tagged):
599 shutil.rmtree(self.tagged)
606 os.mkdir(self.tagged)
607 init_file = os.path.join(self.tagged, '__init__.py')
611 # now create a symlink to the tagged package
612 # sample -> sample-tagged
613 symlink_support.symlink(self.tagged, self.package_name)
619 def tagged(self): member in class:TestSymbolicallyLinkedPackage
620 return self.package_name + '-tagged'
639 if os.path.exists(self.tagged)
    [all...]

Completed in 439 milliseconds

1 2 3