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

  /src/usr.sbin/wiconfig/
wiconfig.c 151 struct wi_req wreq; local in function:wi_apscan
171 memset(&wreq, 0, sizeof(wreq));
173 wreq.wi_type = WI_RID_SCAN_APS;
174 wreq.wi_len = 4;
176 wreq.wi_val[0] = htole16(0x3fff); /* 1 bit per channel, 1-14 */
177 wreq.wi_val[1] = htole16(0xf); /* tx rate */
180 wi_setval(iface, &wreq);
183 memset(&wreq, 0, sizeof(wreq));
367 struct wi_req wreq; local in function:wi_setstr
385 struct wi_req wreq; local in function:wi_setbytes
399 struct wi_req wreq; local in function:wi_setword
634 struct wi_req wreq; local in function:wi_dumpinfo
724 struct wi_req wreq; local in function:wi_dumpstats
    [all...]
  /src/sys/net80211/
ieee80211_ioctl.c 210 struct wi_req *wreq; local in function:ieee80211_cfgget
213 wreq = malloc(sizeof(*wreq), M_TEMP, M_WAITOK);
214 error = copyin(ifr->ifr_data, wreq, sizeof(*wreq));
217 wreq->wi_len = 0;
218 switch (wreq->wi_type) {
224 strlcpy((char *)&wreq->wi_val[1], hostname,
225 sizeof(wreq->wi_val) - sizeof(wreq->wi_val[0]))
510 struct wi_req *wreq; local in function:ieee80211_cfgset
    [all...]
  /src/sys/dev/ic/
wi.c 2238 struct wi_req wreq; local in function:wi_get_cfg
2241 error = copyin(ifr->ifr_data, &wreq, sizeof(wreq));
2244 len = (wreq.wi_len - 1) * 2;
2247 if (len > sizeof(wreq.wi_val))
2248 len = sizeof(wreq.wi_val);
2250 switch (wreq.wi_type) {
2253 memcpy(wreq.wi_val, &sc->sc_stats, sizeof(sc->sc_stats));
2268 error = wi_read_rid(sc, wreq.wi_type, wreq.wi_val
2389 struct wi_req wreq; local in function:wi_set_cfg
    [all...]

Completed in 17 milliseconds