/src/usr.bin/rump_dhcpclient/ |
if-bsd.c | 105 struct ieee80211req ireq; local in function:getifssid 120 memset(&ireq, 0, sizeof(ireq)); 121 strlcpy(ireq.i_name, ifname, sizeof(ireq.i_name)); 122 ireq.i_type = IEEE80211_IOC_SSID; 123 ireq.i_val = -1; 124 ireq.i_data = &nwid; 125 if (rump_sys_ioctl(socket_afnet, SIOCG80211, &ireq) == 0) { 126 retval = ireq.i_len [all...] |
/src/sys/arch/arm/at91/ |
at91pio.c | 82 struct intr_req ireq[AT91PIO_NPINS]; member in struct:at91pio_softc 316 struct intr_req *ireq; local in function:at91pio_intr_establish 323 ireq = &sc->ireq[bit]; 325 if (ireq->ireq_func) /* already used */ 328 ireq->ireq_func = ireq_func; 329 ireq->ireq_arg = arg; 330 ireq->ireq_ipl = ipl; 370 struct intr_req *ireq; local in function:at91pio_intr_disestablish 381 ireq = &sc->ireq[bit] [all...] |
/src/sys/nfs/ |
nfs_boot.c | 207 struct ifreq ireq; local in function:nfs_boot_ifupdown 210 memset(&ireq, 0, sizeof(ireq)); 211 memcpy(ireq.ifr_name, ifp->if_xname, IFNAMSIZ); 228 error = ifioctl(so, SIOCGIFFLAGS, (void *)&ireq, lwp); 234 ireq.ifr_flags |= IFF_UP; 236 ireq.ifr_flags &= ~IFF_UP; 237 error = ifioctl(so, SIOCSIFFLAGS, &ireq, lwp); 255 struct ifreq ireq; local in function:nfs_boot_setmtu 258 memset(&ireq, 0, sizeof(ireq)) [all...] |
/src/sys/arch/amigappc/amigappc/ |
machdep.c | 179 unsigned short ireq; local in function:lev1_intr 181 ireq = custom.intreqr; 182 if (ireq & INTF_TBE) { 189 if (ireq & INTF_DSKBLK) { 195 if (ireq & INTF_SOFTINT) { 207 unsigned short ireq; local in function:lev3_intr 209 ireq = custom.intreqr; 210 if (ireq & INTF_BLIT) 212 if (ireq & INTF_COPER) 214 if (ireq & INTF_VERTB [all...] |
/src/sys/arch/amiga/amiga/ |
machdep.c | 987 register unsigned short ireq; local in function:intrhand 996 ireq = ((ipl == 1) && (*draco_intfrc & DRIRQ_SOFT) ? 1000 ireq = custom.intreqr; 1008 if (ireq & INTF_TBE) { 1016 if (ireq & INTF_DSKBLK) { 1022 if (ireq & INTF_SOFTINT) { 1064 if (ireq & INTF_BLIT) 1066 if (ireq & INTF_COPER) 1068 if (ireq & INTF_VERTB) 1106 sr, ireq); [all...] |
/src/sbin/ifconfig/ |
ieee80211.c | 198 struct ieee80211req ireq; local in function:set80211 200 memset(&ireq, 0, sizeof(ireq)); 201 ireq.i_type = type; 202 ireq.i_val = val; 203 ireq.i_len = len; 204 ireq.i_data = data; 205 if (direct_ioctl(env, SIOCS80211, &ireq) == -1) { 601 struct ieee80211req ireq; local in function:ieee80211_status 620 ireq.i_type = IEEE80211_IOC_HIDESSID 793 struct ieee80211req ireq; local in function:list_scan [all...] |
/src/sys/dev/ic/ |
atw.c | 3909 struct ieee80211req *ireq; local in function:atw_ioctl 3947 ireq = data; 3948 if (ireq->i_type == IEEE80211_IOC_FRAGTHRESHOLD) { 3954 if (!(IEEE80211_FRAG_MIN <= ireq->i_val && 3955 ireq->i_val <= IEEE80211_FRAG_MAX)) 3958 sc->sc_ic.ic_fragthreshold = ireq->i_val;
|
/src/sys/fs/nfs/common/ |
bootp_subr.c | 148 #define ireq _req._ifreq macro 727 ifctx->ireq.ifr_name, 866 ifctx->ireq.ifr_name); 930 ifctx->ireq.ifr_name); 961 ifr = &ifctx->ireq; 1003 ifr = &ifctx->ireq; 1005 printf("Shutdown interface %s\n", ifctx->ireq.ifr_name); 1032 ifr = &ifctx->ireq; 1043 printf("Adjusted interface %s", ifctx->ireq.ifr_name); 1435 printf("%s at ", ifctx->ireq.ifr_name) [all...] |