Searched defs:tagged (Results 1 - 20 of 20) sorted by relevance

/external/wpa_supplicant_8/hostapd/src/ap/
H A Dvlan.h17 int tagged[MAX_NUM_TAGGED_VLAN]; /* first k items, ascending order */ member in struct:vlan_description
H A Dieee802_11_auth.c512 int *untagged, *tagged, *notempty; local
572 tagged = cache->vlan_id.tagged;
575 tagged);
605 cache->vlan_id.tagged[0] ? "+" : "");
H A Dvlan_full.c423 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[
537 int *tagged = vlan->vlan_desc.tagged; local
[all...]
H A Dieee802_1x.c1696 int *untagged, *tagged, *notempty; local
1767 tagged = vlan_desc.tagged;
1770 tagged);
1781 vlan_desc.tagged[0] ? "+" : "");
/external/wpa_supplicant_8/src/ap/
H A Dvlan.h17 int tagged[MAX_NUM_TAGGED_VLAN]; /* first k items, ascending order */ member in struct:vlan_description
H A Dieee802_11_auth.c512 int *untagged, *tagged, *notempty; local
572 tagged = cache->vlan_id.tagged;
575 tagged);
605 cache->vlan_id.tagged[0] ? "+" : "");
H A Dvlan_full.c423 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[
537 int *tagged = vlan->vlan_desc.tagged; local
[all...]
H A Dieee802_1x.c1696 int *untagged, *tagged, *notempty; local
1767 tagged = vlan_desc.tagged;
1770 tagged);
1781 vlan_desc.tagged[0] ? "+" : "");
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dvlan.h17 int tagged[MAX_NUM_TAGGED_VLAN]; /* first k items, ascending order */ member in struct:vlan_description
H A Dieee802_11_auth.c512 int *untagged, *tagged, *notempty; local
572 tagged = cache->vlan_id.tagged;
575 tagged);
605 cache->vlan_id.tagged[0] ? "+" : "");
H A Dvlan_full.c423 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[
537 int *tagged = vlan->vlan_desc.tagged; local
[all...]
H A Dieee802_1x.c1696 int *untagged, *tagged, *notempty; local
1767 tagged = vlan_desc.tagged;
1770 tagged);
1781 vlan_desc.tagged[0] ? "+" : "");
/external/v8/src/builtins/
H A Dbuiltins-sharedarraybuffer.cc30 void ValidateSharedTypedArray(CodeStubAssembler* a, compiler::Node* tagged, argument
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);
96 ConvertTaggedAtomicIndexToWord32(CodeStubAssembler* a, compiler::Node* tagged, compiler::Node* context) argument
/external/v8/src/
H A Dlayout-descriptor-inl.h64 LayoutDescriptor* LayoutDescriptor::SetTagged(int field_index, bool tagged) { argument
76 if (tagged) {
85 if (tagged) {
247 // Object headers do not contain non-tagged fields.
H A Dlayout-descriptor.cc32 // 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, calculat
185 SetTaggedForTesting(int field_index, bool tagged) argument
[all...]
/external/python/cpython2/Lib/test/
H A 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')
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...]
/external/wpa_supplicant_8/hostapd/src/radius/
H A Dradius.c1439 * The k tagged vlans found are sorted by vlan_id and stored in the first k
1440 * items of tagged.
1444 * @numtagged: Size of tagged
1445 * @tagged: Pointer to store tagged list
1447 * Returns: 0 if neither tagged nor untagged configuration is found, 1 otherwise
1450 int *tagged)
1462 tagged[j] = 0;
1514 else if (data[0] == 0x31 && tagged &&
1516 tagged[taggedid
1449 radius_msg_get_vlanid(struct radius_msg *msg, int *untagged, int numtagged, int *tagged) argument
[all...]
/external/wpa_supplicant_8/src/radius/
H A Dradius.c1439 * The k tagged vlans found are sorted by vlan_id and stored in the first k
1440 * items of tagged.
1444 * @numtagged: Size of tagged
1445 * @tagged: Pointer to store tagged list
1447 * Returns: 0 if neither tagged nor untagged configuration is found, 1 otherwise
1450 int *tagged)
1462 tagged[j] = 0;
1514 else if (data[0] == 0x31 && tagged &&
1516 tagged[taggedid
1449 radius_msg_get_vlanid(struct radius_msg *msg, int *untagged, int numtagged, int *tagged) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/radius/
H A Dradius.c1439 * The k tagged vlans found are sorted by vlan_id and stored in the first k
1440 * items of tagged.
1444 * @numtagged: Size of tagged
1445 * @tagged: Pointer to store tagged list
1447 * Returns: 0 if neither tagged nor untagged configuration is found, 1 otherwise
1450 int *tagged)
1462 tagged[j] = 0;
1514 else if (data[0] == 0x31 && tagged &&
1516 tagged[taggedid
1449 radius_msg_get_vlanid(struct radius_msg *msg, int *untagged, int numtagged, int *tagged) argument
[all...]
/external/v8/src/parsing/
H A Dparser-base.h1168 ExpressionT ParseTemplateLiteral(ExpressionT tag, int start, bool tagged,
4418 ExpressionT tag, int start, bool tagged, bool* ok) {
4431 bool forbid_illegal_escapes = !allow_harmony_template_escapes() || !tagged;
4417 ParseTemplateLiteral( ExpressionT tag, int start, bool tagged, bool* ok) argument

Completed in 2644 milliseconds