nwidp 1560 dev/ic/if_wi.c struct ieee80211_nwid *nwidp = NULL;
nwidp 1811 dev/ic/if_wi.c nwidp = malloc(sizeof *nwidp, M_DEVBUF, M_WAITOK);
nwidp 1812 dev/ic/if_wi.c bzero(nwidp, sizeof(*nwidp));
nwidp 1813 dev/ic/if_wi.c wi_set_ssid(nwidp, (u_int8_t *)&wreq->wi_val[1],
nwidp 1815 dev/ic/if_wi.c error = copyout(nwidp, ifr->ifr_data,
nwidp 1816 dev/ic/if_wi.c sizeof(*nwidp));
nwidp 1823 dev/ic/if_wi.c nwidp = malloc(sizeof *nwidp, M_DEVBUF, M_WAITOK);
nwidp 1824 dev/ic/if_wi.c error = copyin(ifr->ifr_data, nwidp, sizeof(*nwidp));
nwidp 1827 dev/ic/if_wi.c if (nwidp->i_len > IEEE80211_NWID_LEN) {
nwidp 1831 dev/ic/if_wi.c if (sc->wi_net_name.i_len == nwidp->i_len &&
nwidp 1832 dev/ic/if_wi.c memcmp(sc->wi_net_name.i_nwid, nwidp->i_nwid, nwidp->i_len) == 0)
nwidp 1834 dev/ic/if_wi.c wi_set_ssid(&sc->wi_net_name, nwidp->i_nwid, nwidp->i_len);
nwidp 2073 dev/ic/if_wi.c if (nwidp)
nwidp 2074 dev/ic/if_wi.c free(nwidp, M_DEVBUF);