HomeSort by: relevance | last modified time | path
    Searched refs:oci (Results 1 - 22 of 22) sorted by relevancy

  /src/external/bsd/wpa/dist/src/common/
ocv.c 22 int ocv_derive_all_parameters(struct oci_info *oci)
26 oci->freq = ieee80211_chan_to_freq(NULL, oci->op_class, oci->channel);
27 if (oci->freq < 0) {
29 "Error interpreting OCI: unrecognized opclass/channel pair (%d/%d)",
30 oci->op_class, oci->channel);
34 op_class_map = get_oper_class(NULL, oci->op_class);
37 "Error interpreting OCI: Unrecognized opclass (%d)"
105 struct oci_info oci; local
    [all...]
ocv.h 15 /* Values in the OCI element */
38 int ocv_derive_all_parameters(struct oci_info *oci);
ieee802_11_common.h 101 const u8 *oci; member in struct:ieee802_11_elems
wpa_common.h 594 const u8 *oci; member in struct:wpa_ft_ies
676 const u8 *oci; member in struct:wpa_eapol_ie_parse
ieee802_11_common.c 359 elems->oci = pos;
922 elems->oci = NULL;
wpa_common.c 1084 parse->oci = pos;
1086 wpa_hexdump(MSG_DEBUG, "FT: OCI",
1087 parse->oci, parse->oci_len);
3529 ie->oci = p;
3531 wpa_hexdump(MSG_DEBUG, "WPA: OCI KDE in EAPOL-Key",
  /src/external/gpl3/gcc/dist/gcc/
ira-color.cc 861 ira_object_conflict_iterator oci;
863 FOR_EACH_OBJECT_CONFLICT (obj, conflict_obj, oci)
1087 ira_object_conflict_iterator oci;
1089 FOR_EACH_OBJECT_CONFLICT (obj, conflict_obj, oci)
1373 ira_object_conflict_iterator oci;
1375 FOR_EACH_OBJECT_CONFLICT (obj, conflict_obj, oci)
1547 ira_object_conflict_iterator oci;
1549 FOR_EACH_OBJECT_CONFLICT (obj, conflict_obj, oci)
2008 ira_object_conflict_iterator oci;
2011 FOR_EACH_OBJECT_CONFLICT (obj, conflict_obj, oci)
859 ira_object_conflict_iterator oci; local
    [all...]
ira-conflicts.cc 735 ira_object_conflict_iterator oci;
746 FOR_EACH_OBJECT_CONFLICT (obj, conflict_obj, oci)
732 ira_object_conflict_iterator oci; local
ira.cc 2667 ira_object_conflict_iterator oci;
2676 FOR_EACH_OBJECT_CONFLICT (obj, conflict_obj, oci)
  /src/external/gpl3/gcc.old/dist/gcc/
ira-color.cc 854 ira_object_conflict_iterator oci;
856 FOR_EACH_OBJECT_CONFLICT (obj, conflict_obj, oci)
1080 ira_object_conflict_iterator oci;
1082 FOR_EACH_OBJECT_CONFLICT (obj, conflict_obj, oci)
1366 ira_object_conflict_iterator oci;
1368 FOR_EACH_OBJECT_CONFLICT (obj, conflict_obj, oci)
1540 ira_object_conflict_iterator oci;
1542 FOR_EACH_OBJECT_CONFLICT (obj, conflict_obj, oci)
2002 ira_object_conflict_iterator oci;
2005 FOR_EACH_OBJECT_CONFLICT (obj, conflict_obj, oci)
852 ira_object_conflict_iterator oci; local
    [all...]
ira-conflicts.cc 729 ira_object_conflict_iterator oci;
740 FOR_EACH_OBJECT_CONFLICT (obj, conflict_obj, oci)
726 ira_object_conflict_iterator oci; local
ira.cc 2660 ira_object_conflict_iterator oci;
2669 FOR_EACH_OBJECT_CONFLICT (obj, conflict_obj, oci)
  /src/sys/arch/x86/x86/
intr.c 1660 intr_redistribute(struct cpu_info *oci)
1673 if ((isp = oci->ci_isources[oslot]) == NULL) {
1690 KASSERT(ici != oci);
1710 KASSERT(nci != oci);
1737 where = xc_unicast(0, intr_redistribute_xc_s1, isp, nci, oci);
1745 (void *)(uintptr_t)oslot, NULL, oci);
1750 oci->ci_nintrhand--;
1754 intr_save_evcnt(isp, oci->ci_cpuid);
  /src/sys/kern/
subr_prf.c 217 struct cpu_info *ci, *oci; local
231 oci = atomic_cas_ptr((void *)&paniccpu, NULL, ci);
232 if (oci != NULL && oci != ci) {
  /src/external/bsd/wpa/dist/src/ap/
ieee802_11_shared.c 85 "Failed to get channel info for OCI element in SA Query Request");
91 "TEST: Override OCI frequency %d -> %u MHz",
103 "Failed to allocate buffer for OCI element in SA Query Request");
180 "Failed to get channel info for OCI element in SA Query Response");
186 "TEST: Override OCI frequency %d -> %u MHz",
198 "Failed to allocate buffer for for OCI element in SA Query Response");
296 "Failed to get channel info to validate received OCI in SA Query Action frame");
306 if (ocv_verify_tx_params(elems.oci, elems.oci_len, &ci,
wpa_auth.c 3445 "FILS: Failed to get channel info for OCI element");
3452 "TEST: Override OCI frequency %d -> %u MHz",
3878 "Failed to get channel info to validate received OCI in EAPOL-Key 2/4");
3888 res = ocv_verify_tx_params(kde.oci, kde.oci_len, &ci,
3894 "Disable OCV with a STA that does not send OCI");
4125 "Failed to get channel info for OCI element");
4131 "TEST: Override OCI KDE frequency %d -> %u MHz",
5305 "Failed to get channel info to validate received OCI in EAPOL-Key group 2/2");
5315 if (ocv_verify_tx_params(kde.oci, kde.oci_len, &ci,
wpa_auth_ft.c 2713 "Failed to get channel info for OCI element");
2720 "TEST: Override OCI frequency %d -> %u MHz",
3700 "Failed to get channel info to validate received OCI in (Re)Assoc Request");
3710 res = ocv_verify_tx_params(parse.oci, parse.oci_len, &ci,
3715 "Disable OCV with a STA that does not send OCI");
ieee802_11.c 4358 "Failed to get channel info to validate received OCI in FILS (Re)Association Request frame");
4368 res = ocv_verify_tx_params(elems->oci, elems->oci_len, &ci,
4374 "FILS: Disable OCV with a STA that does not send OCI");
  /src/external/bsd/wpa/dist/src/rsn_supp/
wpa_ft.c 410 /* OCI sub-element in the third FT message */
415 "Failed to get channel info for OCI element in FTE");
422 "TEST: Override OCI KDE frequency %d -> %d MHz",
1234 "Failed to get channel info to validate received OCI in (Re)Assoc Response");
1238 if (ocv_verify_tx_params(parse.oci, parse.oci_len, &ci,
wpa.c 1033 "Failed to get channel info for OCI element in EAPOL-Key 2/4");
1039 "TEST: Override OCI KDE frequency %d -> %d MHz",
2686 "Failed to get channel info to validate received OCI in EAPOL-Key 3/4");
2690 if (ocv_verify_tx_params(ie.oci, ie.oci_len, &ci,
2865 "Failed to get channel info for OCI element in EAPOL-Key 2/2");
2872 "TEST: Override OCI KDE frequency %d -> %d MHz",
2940 "Failed to get channel info to validate received OCI in EAPOL-Key group msg 1/2");
2944 if (ocv_verify_tx_params(ie.oci, ie.oci_len, &ci,
3191 "Failed to get channel info to validate received OCI in EAPOL-Key group msg 1/2");
3195 if (ocv_verify_tx_params(ie.oci, ie.oci_len, &ci
    [all...]
  /src/external/bsd/wpa/dist/wpa_supplicant/
mesh_mpm.c 263 /* OCI is included even when the other STA doesn't support OCV */
407 "Mesh MPM: Failed to get channel info for OCI element");
1324 "MPM: Failed to get channel info to validate received OCI in MPM Confirm");
1334 if (ocv_verify_tx_params(elems.oci, elems.oci_len, &ci,
sme.c 3352 "Failed to get channel info for OCI element in SA Query Request frame");
3359 "TEST: Override SA Query Request OCI frequency %d -> %d MHz",
3516 "Failed to get channel info for OCI element in SA Query Response frame");
3523 "TEST: Override SA Query Response OCI frequency %d -> %d MHz",
3609 "Failed to get channel info to validate received OCI in SA Query Action frame");
3613 if (ocv_verify_tx_params(elems.oci, elems.oci_len, &ci,

Completed in 65 milliseconds