HomeSort by: relevance | last modified time | path
    Searched defs:wme (Results 1 - 11 of 11) sorted by relevancy

  /src/sys/net80211/
ieee80211_proto.c 561 * WME protocol support. The following parameters come from the spec.
639 struct ieee80211_wme_state *wme = &ic->ic_wme; local in function:ieee80211_wme_initparams
668 wmep = &wme->wme_wmeChanParams.cap_wmeParams[i];
694 wmep = &wme->wme_wmeBssChanParams.cap_wmeParams[i];
719 wme->wme_hipri_switch_thresh =
726 * Update WME parameters for ourself and the BSS.
740 struct ieee80211_wme_state *wme = &ic->ic_wme; local in function:ieee80211_wme_updateparams_locked
747 chanp = &wme->wme_chanParams.cap_wmeParams[i];
748 wmep = &wme->wme_wmeChanParams.cap_wmeParams[i];
754 chanp = &wme->wme_bssChanParams.cap_wmeParams[i]
    [all...]
ieee80211_ioctl.c 1269 struct ieee80211_wme_state *wme = &ic->ic_wme; local in function:ieee80211_ioctl_getwmeparam
1280 wmep = &wme->wme_wmeBssChanParams.cap_wmeParams[ac];
1282 wmep = &wme->wme_wmeChanParams.cap_wmeParams[ac];
1284 case IEEE80211_IOC_WME_CWMIN: /* WME: CWmin */
1287 case IEEE80211_IOC_WME_CWMAX: /* WME: CWmax */
1290 case IEEE80211_IOC_WME_AIFS: /* WME: AIFS */
1293 case IEEE80211_IOC_WME_TXOPLIMIT: /* WME: txops limit */
1296 case IEEE80211_IOC_WME_ACM: /* WME: ACM (bss only) */
1297 wmep = &wme->wme_wmeBssChanParams.cap_wmeParams[ac];
1300 case IEEE80211_IOC_WME_ACKPOLICY: /* WME: ACK policy (!bss only)*
1954 struct ieee80211_wme_state *wme = &ic->ic_wme; local in function:ieee80211_ioctl_setwmeparam
    [all...]
ieee80211_input.c 1913 struct ieee80211_wme_state *wme = &ic->ic_wme; local in function:ieee80211_parse_wmeparams
1920 wh, "WME", "too short, len %u", len);
1928 if (qosinfo == wme->wme_wmeChanParams.cap_info)
1934 &wme->wme_wmeChanParams.cap_wmeParams[i];
1944 wme->wme_wmeChanParams.cap_info = qosinfo;
2098 * [tlv] WME
2532 u_int8_t *ssid, *rates, *xrates, *wpa, *wme; local in function:ieee80211_recv_mgmt_assoc_req
2584 ssid = rates = xrates = wpa = wme = NULL;
2606 wme = frm;
2747 if (wme != NULL)
2775 u_int8_t *rates, *xrates, *wme; local in function:ieee80211_recv_mgmt_assoc_resp
    [all...]
ieee80211_output.c 1256 * Add a WME information element to a frame.
1259 ieee80211_add_wme_info(u_int8_t *frm, struct ieee80211_wme_state *wme)
1275 * Add a WME parameters element to a frame.
1278 ieee80211_add_wme_param(u_int8_t *frm, struct ieee80211_wme_state *wme)
1299 *frm++ = wme->wme_bssChanParams.cap_info; /* AC info */
1303 &wme->wme_bssChanParams.cap_wmeParams[i];
1451 * [tlv] WME (optional)
1535 /* wme */
1634 * [tlv] WME
1701 * [tlv] WME (if enabled and STA enabled
2000 struct ieee80211_wme_state *wme = &ic->ic_wme; local in function:ieee80211_beacon_update
    [all...]
  /src/sbin/ifconfig/
ieee80211.c 950 const struct ieee80211_wme_param *wme = local in function:printwmeparam
957 printf("<qosinfo 0x%x", wme->param_qosInfo);
961 &wme->params_acParams[i];
981 const struct ieee80211_wme_info *wme = local in function:printwmeinfo
984 wme->wme_version, wme->wme_info);
1333 printwmeinfo(" WME", vp, 2+vp[1], maxcols);
1335 printwmeparam(" WME", vp, 2+vp[1], maxcols);
  /src/sys/dev/usb/
if_uralreg.h 165 uint16_t wme; member in struct:ural_tx_desc
if_rumreg.h 181 uint16_t wme; member in struct:rum_tx_desc
  /src/sys/dev/pci/
if_iwi.c 958 * WME parameters coming from IEEE 802.11e specification. These values are
982 struct iwi_wme_params wme[3]; local in function:iwi_wme_update
987 * We shall not override firmware default WME values if WME is not
994 /* set WME values for current operating mode */
996 wme[0].aifsn[ac] = wmep->wmep_aifsn;
997 wme[0].cwmin[ac] = IWI_EXP2(wmep->wmep_logcwmin);
998 wme[0].cwmax[ac] = IWI_EXP2(wmep->wmep_logcwmax);
999 wme[0].burst[ac] = IWI_USEC(wmep->wmep_txopLimit);
1000 wme[0].acm[ac] = wmep->wmep_acm
2573 struct ieee80211_wme_info wme; local in function:iwi_auth_and_assoc
    [all...]
if_wpi.c 2425 struct wpi_wme_setup wme; local in function:wpi_wme_update
2428 /* don't override default WME values if WME is not actually enabled */
2432 wme.flags = 0;
2435 wme.ac[ac].aifsn = wmep->wmep_aifsn;
2436 wme.ac[ac].cwmin = WPI_EXP2(wmep->wmep_logcwmin);
2437 wme.ac[ac].cwmax = WPI_EXP2(wmep->wmep_logcwmax);
2438 wme.ac[ac].txop = WPI_USEC(wmep->wmep_txopLimit);
2440 DPRINTF(("setting WME for queue %d aifsn=%d cwmin=%d cwmax=%d "
2441 "txop=%d\n", ac, wme.ac[ac].aifsn, wme.ac[ac].cwmin
    [all...]
  /src/sys/dev/ic/
rt2560reg.h 210 uint16_t wme; member in struct:rt2560_tx_desc
rt2661reg.h 233 uint16_t wme; member in struct:rt2661_tx_desc

Completed in 39 milliseconds