HomeSort by: relevance | last modified time | path
    Searched defs:tap (Results 1 - 25 of 33) sorted by relevancy

1 2

  /src/sys/arch/alpha/tlsb/
tlsb.c 89 struct tlsb_dev_attach_args *tap = aux; local in function:tlsbprint
94 tlsb_node_type_str(tap->ta_dtype, buf, sizeof(buf)),
95 pnp, tap->ta_node);
97 aprint_normal(" node %d: %s", tap->ta_node,
98 tlsb_node_type_str(tap->ta_dtype, buf, sizeof(buf)));
  /src/sys/arch/alpha/mcbus/
mcbus.c 93 struct mcbus_dev_attach_args *tap = aux; local in function:mcbusprint
94 aprint_normal(" mid %d: %s", tap->ma_mid,
95 mcbus_node_type_str(tap->ma_type));
  /src/sys/arch/usermode/usermode/
machdep.c 160 char *tap = argv[i] + strlen("net="); local in function:main
161 char *mac = strchr(tap, ',');
169 if (*tap != '/') {
173 for (; *tap != ','; p++, tap++)
174 *p = *tap;
  /src/sys/dev/ic/
anvar.h 152 struct an_rx_radiotap_header tap; member in union:an_softc::__anona0b5df32020a
156 struct an_tx_radiotap_header tap; member in union:an_softc::__anona0b5df32030a
162 #define sc_rxtap sc_rxtapu.tap
163 #define sc_txtap sc_txtapu.tap
an.c 806 struct an_tx_radiotap_header *tap = &sc->sc_txtap; local in function:an_start
807 tap->at_rate = ic->ic_bss->ni_rates.rs_rates[ic->ic_bss->ni_txrate];
808 tap->at_chan_freq = htole16(ic->ic_bss->ni_chan->ic_freq);
809 tap->at_chan_flags = htole16(ic->ic_bss->ni_chan->ic_flags);
810 /* TBD tap->wt_flags */
811 bpf_mtap2(sc->sc_drvbpf, tap, tap->at_ihdr.it_len, m,
1497 struct an_rx_radiotap_header *tap = &sc->sc_rxtap; local in function:an_rx_intr
1499 tap->ar_rate = frmhdr.an_rx_rate;
1500 tap->ar_chan_flags = htole16(ic->ic_bss->ni_chan->ic_flags)
    [all...]
rt2661.c 1116 struct rt2661_rx_radiotap_header *tap = &sc->sc_rxtap; local in function:rt2661_rx_intr
1123 tap->wr_tsf =
1125 tap->wr_flags = 0;
1126 tap->wr_rate = rt2661_rxrate(desc);
1127 tap->wr_chan_freq = htole16(sc->sc_curchan->ic_freq);
1128 tap->wr_chan_flags = htole16(sc->sc_curchan->ic_flags);
1129 tap->wr_antsignal = desc->rssi;
1131 bpf_mtap2(sc->sc_drvbpf, tap, sc->sc_rxtap_len, m,
1528 struct rt2661_tx_radiotap_header *tap = &sc->sc_txtap; local in function:rt2661_tx_mgt
1530 tap->wt_flags = 0
1766 struct rt2661_tx_radiotap_header *tap = &sc->sc_txtap; local in function:rt2661_tx_data
    [all...]
wivar.h 163 struct wi_rx_radiotap_header tap; member in union:wi_softc::__anon328d4ca3020a
167 struct wi_tx_radiotap_header tap; member in union:wi_softc::__anon328d4ca3030a
183 #define sc_rxtap sc_rxtapu.tap
184 #define sc_txtap sc_txtapu.tap
rt2560.c 1328 struct rt2560_rx_radiotap_header *tap = &sc->sc_rxtap; local in function:rt2560_decryption_intr
1335 tap->wr_tsf =
1337 tap->wr_flags = 0;
1338 tap->wr_rate = rt2560_rxrate(desc);
1339 tap->wr_chan_freq = htole16(ic->ic_ibss_chan->ic_freq);
1340 tap->wr_chan_flags =
1342 tap->wr_antenna = sc->rx_ant;
1343 tap->wr_antsignal = desc->rssi;
1345 bpf_mtap2(sc->sc_drvbpf, tap, sc->sc_txtap_len, m,
1795 struct rt2560_tx_radiotap_header *tap = &sc->sc_txtap local in function:rt2560_tx_mgt
2030 struct rt2560_tx_radiotap_header *tap = &sc->sc_txtap; local in function:rt2560_tx_data
    [all...]
atw.c 3211 struct atw_rx_radiotap_header *tap = &sc->sc_rxtap; local in function:atw_rxintr
3213 tap->ar_rate = rate;
3216 tap->ar_antsignal = (int)rssi;
3218 tap->ar_flags = IEEE80211_RADIOTAP_F_FCS;
3220 tap->ar_flags = 0;
3223 tap->ar_flags |= IEEE80211_RADIOTAP_F_BADFCS;
3225 bpf_mtap2(sc->sc_radiobpf, tap, sizeof(sc->sc_rxtapu),
3614 struct atw_tx_radiotap_header *tap = &sc->sc_txtap; local in function:atw_start
3616 tap->at_rate = rate;
3618 bpf_mtap2(sc->sc_radiobpf, tap, sizeof(sc->sc_txtapu)
    [all...]
atwvar.h 285 struct atw_rx_radiotap_header tap; member in union:atw_softc::__anon891824ef010a
289 struct atw_tx_radiotap_header tap; member in union:atw_softc::__anon891824ef020a
295 #define sc_rxtap sc_rxtapu.tap
296 #define sc_txtap sc_txtapu.tap
rt2860.c 1329 struct rt2860_rx_radiotap_header *tap; local in function:rt2860_rx_intr
1443 tap = &sc->sc_rxtap;
1444 tap->wr_flags = 0;
1445 tap->wr_chan_freq = htole16(ic->ic_curchan->ic_freq);
1446 tap->wr_chan_flags = htole16(ic->ic_curchan->ic_flags);
1447 tap->wr_antsignal = rssi;
1448 tap->wr_antenna = ant;
1449 tap->wr_dbm_antsignal = rt2860_rssi2dbm(sc, rssi, ant);
1450 tap->wr_rate = 2; /* in case it can't be found below */
1455 case 0: tap->wr_rate = 2; break
1747 struct rt2860_tx_radiotap_header *tap = &sc->sc_txtap; local in function:rt2860_tx
    [all...]
wi.c 1216 struct wi_tx_radiotap_header *tap = &sc->sc_txtap; local in function:wi_start
1218 tap->wt_rate = rs->rs_rates[rateidx];
1219 tap->wt_chan_freq =
1221 tap->wt_chan_flags =
1223 /* TBD tap->wt_flags */
1225 bpf_mtap2(sc->sc_drvbpf, tap, tap->wt_ihdr.it_len, m0,
1738 struct wi_rx_radiotap_header *tap = &sc->sc_rxtap; local in function:wi_rx_intr
1740 tap->wr_rate = frmhdr.wi_rx_rate / 5;
1741 tap->wr_antsignal = frmhdr.wi_rx_signal
    [all...]
arn5008.c 727 struct athn_rx_radiotap_header *tap = &sc->sc_rxtap; local in function:ar5008_rx_radiotap
741 tap->wr_flags = IEEE80211_RADIOTAP_F_FCS;
742 tap->wr_tsft = htole64(tsf);
743 tap->wr_chan_freq = htole16(ic->ic_curchan->ic_freq);
744 tap->wr_chan_flags = htole16(ic->ic_curchan->ic_flags);
745 tap->wr_dbm_antsignal = MS(ds->ds_status4, AR_RXS4_RSSI_COMBINED);
747 tap->wr_antenna = MS(ds->ds_status3, AR_RXS3_ANTENNA);
748 tap->wr_rate = 0; /* In case it can't be found below. */
755 tap->wr_rate = rate;
757 tap->wr_flags |= IEEE80211_RADIOTAP_F_SHORTGI
1409 struct athn_tx_radiotap_header *tap = &sc->sc_txtap; local in function:ar5008_tx
    [all...]
  /src/sys/dev/pci/
if_ipw.c 1082 struct ipw_rx_radiotap_header *tap = &sc->sc_rxtap; local in function:ipw_data_intr
1084 tap->wr_antsignal = status->rssi;
1086 bpf_mtap2(sc->sc_drvbpf, tap, sc->sc_rxtap_len, m, BPF_D_IN);
1373 struct ipw_tx_radiotap_header *tap = &sc->sc_txtap; local in function:ipw_tx_start
1375 bpf_mtap2(sc->sc_drvbpf, tap, sc->sc_txtap_len, m0, BPF_D_OUT);
if_iwi.c 1215 struct iwi_rx_radiotap_header *tap = &sc->sc_rxtap; local in function:iwi_frame_intr
1217 tap->wr_flags = 0;
1218 tap->wr_rate = iwi_cvtrate(frame->rate);
1219 tap->wr_chan_freq =
1221 tap->wr_chan_flags =
1223 tap->wr_antsignal = frame->signal;
1224 tap->wr_antenna = frame->antenna;
1226 bpf_mtap2(sc->sc_drvbpf, tap, sc->sc_rxtap_len, m, BPF_D_IN);
1649 struct iwi_tx_radiotap_header *tap = &sc->sc_txtap; local in function:iwi_tx_start
1651 tap->wt_flags = 0
    [all...]
if_wpi.c 1581 struct wpi_rx_radiotap_header *tap = &sc->sc_rxtap; local in function:wpi_rx_intr
1583 tap->wr_flags = 0;
1584 tap->wr_chan_freq =
1586 tap->wr_chan_flags =
1588 tap->wr_dbm_antsignal = (int8_t)(stat->rssi - WPI_RSSI_OFFSET);
1589 tap->wr_dbm_antnoise = (int8_t)le16toh(stat->noise);
1590 tap->wr_tsft = tail->tstamp;
1591 tap->wr_antenna = (le16toh(head->flags) >> 4) & 0xf;
1594 case 10: tap->wr_rate = 2; break;
1595 case 20: tap->wr_rate = 4; break
1951 struct wpi_tx_radiotap_header *tap = &sc->sc_txtap; local in function:wpi_tx_data
    [all...]
if_rtwn.c 1781 struct rtwn_rx_radiotap_header *tap = &sc->sc_rxtap; local in function:rtwn_rx_frame
1783 tap->wr_flags = 0;
1785 tap->wr_flags = 2;
1789 case 0: tap->wr_rate = 2; break;
1790 case 1: tap->wr_rate = 4; break;
1791 case 2: tap->wr_rate = 11; break;
1792 case 3: tap->wr_rate = 22; break;
1794 case 4: tap->wr_rate = 12; break;
1795 case 5: tap->wr_rate = 18; break;
1796 case 6: tap->wr_rate = 24; break
1995 struct rtwn_tx_radiotap_header *tap = &sc->sc_txtap; local in function:rtwn_tx
    [all...]
  /src/sys/dev/usb/
if_upgt.c 1657 struct upgt_tx_radiotap_header *tap = &sc->sc_txtap; local in function:upgt_tx_task
1659 tap->wt_flags = 0;
1660 tap->wt_rate = 0; /* TODO: where to get from? */
1661 tap->wt_chan_freq = htole16(ic->ic_curchan->ic_freq);
1662 tap->wt_chan_flags = htole16(ic->ic_curchan->ic_flags);
1664 bpf_mtap2(sc->sc_drvbpf, tap, sc->sc_txtap_len, m,
1871 struct upgt_rx_radiotap_header *tap = &sc->sc_rxtap; local in function:upgt_rx
1873 tap->wr_flags = IEEE80211_RADIOTAP_F_FCS;
1874 tap->wr_rate = upgt_rx_rate(sc, rxdesc->rate);
1875 tap->wr_chan_freq = htole16(ic->ic_curchan->ic_freq)
    [all...]
if_athn_usb.c 2178 struct athn_rx_radiotap_header *tap = &sc->sc_rxtap; local in function:athn_usb_rx_radiotap
2184 tap->wr_flags = IEEE80211_RADIOTAP_F_FCS;
2185 tap->wr_tsft = htole64(be64toh(rs->rs_tstamp));
2186 tap->wr_chan_freq = htole16(ic->ic_curchan->ic_freq);
2187 tap->wr_chan_flags = htole16(ic->ic_curchan->ic_flags);
2188 tap->wr_dbm_antsignal = rs->rs_rssi;
2190 tap->wr_antenna = rs->rs_antenna;
2194 tap->wr_rate = rate;
2196 tap->wr_flags |= IEEE80211_RADIOTAP_F_SHORTGI;
2199 tap->wr_flags |= IEEE80211_RADIOTAP_F_SHORTPRE
2497 struct athn_tx_radiotap_header *tap = &sc->sc_txtap; local in function:athn_usb_tx
    [all...]
if_rum.c 875 struct rum_rx_radiotap_header *tap = &sc->sc_rxtap; local in function:rum_rxeof
877 tap->wr_flags = IEEE80211_RADIOTAP_F_FCS;
878 tap->wr_rate = rum_rxrate(desc);
879 tap->wr_chan_freq = htole16(ic->ic_curchan->ic_freq);
880 tap->wr_chan_flags = htole16(ic->ic_curchan->ic_flags);
881 tap->wr_antenna = sc->rx_ant;
882 tap->wr_antsignal = desc->rssi;
884 bpf_mtap2(sc->sc_drvbpf, tap, sc->sc_rxtap_len, m, BPF_D_IN);
1206 struct rum_tx_radiotap_header *tap = &sc->sc_txtap; local in function:rum_tx_data
1208 tap->wt_flags = 0
    [all...]
if_ural.c 964 struct ural_rx_radiotap_header *tap = &sc->sc_rxtap; local in function:ural_rxeof
966 tap->wr_flags = IEEE80211_RADIOTAP_F_FCS;
967 tap->wr_rate = ural_rxrate(desc);
968 tap->wr_chan_freq = htole16(ic->ic_curchan->ic_freq);
969 tap->wr_chan_flags = htole16(ic->ic_curchan->ic_flags);
970 tap->wr_antenna = sc->rx_ant;
971 tap->wr_antsignal = desc->rssi;
973 bpf_mtap2(sc->sc_drvbpf, tap, sc->sc_rxtap_len, m, BPF_D_IN);
1222 struct ural_tx_radiotap_header *tap = &sc->sc_txtap; local in function:ural_tx_mgt
1224 tap->wt_flags = 0
1312 struct ural_tx_radiotap_header *tap = &sc->sc_txtap; local in function:ural_tx_data
    [all...]
if_otus.c 1801 struct otus_rx_radiotap_header *tap; local in function:otus_sub_rxeof
1803 tap = &sc->sc_rxtap;
1804 tap->wr_flags = 0;
1805 tap->wr_chan_freq = htole16(ic->ic_curchan->ic_freq);
1806 tap->wr_chan_flags = htole16(ic->ic_curchan->ic_flags);
1807 tap->wr_antsignal = tail->rssi;
1808 tap->wr_rate = 2; /* In case it can't be found below. */
1812 case 10: tap->wr_rate = 2; break;
1813 case 20: tap->wr_rate = 4; break;
1814 case 55: tap->wr_rate = 11; break
2038 struct otus_tx_radiotap_header *tap = &sc->sc_txtap; local in function:otus_tx
    [all...]
if_run.c 2365 struct run_rx_radiotap_header *tap = &sc->sc_rxtap; local in function:run_rx_frame
2367 tap->wr_flags = 0;
2368 tap->wr_chan_freq = htole16(ic->ic_curchan->ic_freq);
2369 tap->wr_chan_flags = htole16(ic->ic_curchan->ic_flags);
2370 tap->wr_antsignal = rssi;
2371 tap->wr_antenna = ant;
2372 tap->wr_dbm_antsignal = run_rssi2dbm(sc, rssi, ant);
2373 tap->wr_rate = 2; /* in case it can't be found below */
2378 case 0: tap->wr_rate = 2; break;
2379 case 1: tap->wr_rate = 4; break
2651 struct run_tx_radiotap_header *tap = &sc->sc_txtap; local in function:run_tx
    [all...]
if_zyd.c 1963 struct zyd_rx_radiotap_header *tap = &sc->sc_rxtap; local in function:zyd_rx_data
1970 tap->wr_flags = IEEE80211_RADIOTAP_F_FCS;
1971 tap->wr_chan_freq = htole16(ic->ic_curchan->ic_freq);
1972 tap->wr_chan_flags = htole16(ic->ic_curchan->ic_flags);
1973 tap->wr_rssi = stat->rssi;
1974 tap->wr_rate = rates[plcp->signal & 0xf];
1976 bpf_mtap2(sc->sc_drvbpf, tap, sc->sc_rxtap_len, m, BPF_D_IN);
2129 struct zyd_tx_radiotap_header *tap = &sc->sc_txtap; local in function:zyd_tx_mgt
2131 tap->wt_flags = 0;
2132 tap->wt_rate = rate
2286 struct zyd_tx_radiotap_header *tap = &sc->sc_txtap; local in function:zyd_tx_data
    [all...]
if_urtw.c 2617 struct urtw_tx_radiotap_header *tap = &sc->sc_txtap; local in function:urtw_tx_start
2619 tap->wt_flags = 0;
2620 tap->wt_rate = 0;
2621 tap->wt_chan_freq = htole16(ic->ic_bss->ni_chan->ic_freq);
2622 tap->wt_chan_flags = htole16(ic->ic_bss->ni_chan->ic_flags);
2624 bpf_mtap2(sc->sc_drvbpf, tap, sc->sc_txtap_len, m0, BPF_D_OUT);
3140 struct urtw_rx_radiotap_header *tap = &sc->sc_rxtap; local in function:urtw_rxeof
3143 tap->wr_chan_freq = htole16(ic->ic_ibss_chan->ic_freq);
3144 tap->wr_chan_flags = htole16(ic->ic_ibss_chan->ic_flags);
3145 tap->wr_dbm_antsignal = (int8_t)rssi
    [all...]

Completed in 48 milliseconds

1 2