Symbol: netif
sbin/ipf/libipf/getifname.c
42
struct ifnet netif;
sbin/ipf/libipf/getifname.c
49
if (kmemcpy((char *)&netif, (u_long)ptr, sizeof(netif)) == -1)
sbin/ipf/libipf/getifname.c
51
return (strdup(netif.if_xname));
stand/efi/libefi/efinet.c
109
efinet_probe(struct netif *nif, void *machdep_hint)
stand/efi/libefi/efinet.c
136
struct netif *nif = desc->io_netif;
stand/efi/libefi/efinet.c
166
struct netif *nif = desc->io_netif;
stand/efi/libefi/efinet.c
273
struct netif *nif = desc->io_netif;
stand/efi/libefi/efinet.c
331
efinet_end(struct netif *nif)
stand/efi/libefi/efinet.c
45
static void efinet_end(struct netif *);
stand/efi/libefi/efinet.c
48
static int efinet_match(struct netif *, void *);
stand/efi/libefi/efinet.c
49
static int efinet_probe(struct netif *, void *);
stand/efi/libefi/efinet.c
99
efinet_match(struct netif *nif, void *machdep_hint)
stand/i386/libi386/pxe.c
347
pxe_netif_match(struct netif *nif, void *machdep_hint)
stand/i386/libi386/pxe.c
353
pxe_netif_probe(struct netif *nif, void *machdep_hint)
stand/i386/libi386/pxe.c
362
pxe_netif_end(struct netif *nif)
stand/i386/libi386/pxe.c
71
static int pxe_netif_match(struct netif *nif, void *machdep_hint);
stand/i386/libi386/pxe.c
72
static int pxe_netif_probe(struct netif *nif, void *machdep_hint);
stand/i386/libi386/pxe.c
76
static void pxe_netif_end(struct netif *nif);
stand/libofw/ofw_net.c
238
ofwn_end(struct netif *nif)
stand/libofw/ofw_net.c
44
static int ofwn_probe(struct netif *, void *);
stand/libofw/ofw_net.c
45
static int ofwn_match(struct netif *, void *);
stand/libofw/ofw_net.c
49
static void ofwn_end(struct netif *);
stand/libofw/ofw_net.c
81
ofwn_match(struct netif *nif, void *machdep_hint)
stand/libofw/ofw_net.c
87
ofwn_probe(struct netif *nif, void *machdep_hint)
stand/libsa/iodesc.h
47
struct netif *io_netif;
stand/libsa/netif.c
103
struct netif cur_if;
stand/libsa/netif.c
104
static struct netif best_if;
stand/libsa/netif.c
168
netif_probe(struct netif *nif, void *machdep_hint)
stand/libsa/netif.c
180
netif_attach(struct netif *nif, struct iodesc *desc, void *machdep_hint)
stand/libsa/netif.c
200
netif_detach(struct netif *nif)
stand/libsa/netif.c
220
struct netif *nif = desc->io_netif;
stand/libsa/netif.c
247
struct netif *nif = desc->io_netif;
stand/libsa/netif.c
315
struct netif *nif;
stand/libsa/netif.c
86
netif_match(struct netif *nif, void *machdep_hint)
stand/libsa/netif.c
98
struct netif *
stand/libsa/netif.h
10
int (*netif_match)(struct netif *, void *);
stand/libsa/netif.h
11
int (*netif_probe)(struct netif *, void *);
stand/libsa/netif.h
15
void (*netif_end)(struct netif *);
stand/libsa/netif.h
52
struct netif *netif_select(void *);
stand/libsa/netif.h
53
int netif_probe(struct netif *, void *);
stand/libsa/netif.h
54
void netif_attach(struct netif *, struct iodesc *, void *);
stand/libsa/netif.h
55
void netif_detach(struct netif *);
stand/uboot/net.c
196
net_match(struct netif *nif, void *machdep_hint)
stand/uboot/net.c
208
net_probe(struct netif *nif, void *machdep_hint)
stand/uboot/net.c
235
struct netif *nif = desc->io_netif;
stand/uboot/net.c
274
struct netif *nif = desc->io_netif;
stand/uboot/net.c
316
struct netif *nif = desc->io_netif;
stand/uboot/net.c
353
net_end(struct netif *nif)
stand/uboot/net.c
47
static int net_probe(struct netif *, void *);
stand/uboot/net.c
48
static int net_match(struct netif *, void *);
stand/uboot/net.c
52
static void net_end(struct netif *);
sys/dev/xen/netfront/netfront.c
258
#define netfront_carrier_on(netif) ((netif)->carrier = 1)
sys/dev/xen/netfront/netfront.c
259
#define netfront_carrier_off(netif) ((netif)->carrier = 0)
sys/dev/xen/netfront/netfront.c
260
#define netfront_carrier_ok(netif) ((netif)->carrier)