Searched refs:nif (Results 1 - 15 of 15) sorted by relevance

/freebsd-13-stable/stand/libsa/
H A Dnetif.c79 netif_match(struct netif *nif, void *machdep_hint) argument
81 struct netif_driver *drv = nif->nif_driver;
86 nif->nif_unit, nif->nif_sel);
88 return drv->netif_match(nif, machdep_hint);
162 netif_probe(struct netif *nif, void *machdep_hint) argument
164 struct netif_driver *drv = nif->nif_driver;
168 printf("%s%d: netif_probe\n", drv->netif_bname, nif->nif_unit);
170 return drv->netif_probe(nif, machdep_hint);
174 netif_attach(struct netif *nif, struc argument
194 netif_detach(struct netif *nif) argument
214 struct netif *nif = desc->io_netif; local
241 struct netif *nif = desc->io_netif; local
279 struct netif *nif; local
[all...]
/freebsd-13-stable/stand/uboot/lib/
H A Dnet.c199 net_match(struct netif *nif, void *machdep_hint) argument
211 net_probe(struct netif *nif, void *machdep_hint) argument
238 struct netif *nif = desc->io_netif; local
239 struct uboot_softc *sc = nif->nif_devdata;
277 struct netif *nif = desc->io_netif; local
278 struct uboot_softc *sc = nif->nif_devdata;
319 struct netif *nif = desc->io_netif; local
324 sc = nif->nif_devdata = &uboot_softc;
328 nif->nif_driver->netif_bname, nif
356 net_end(struct netif *nif) argument
[all...]
/freebsd-13-stable/stand/efi/libefi/
H A Definet.c101 efinet_match(struct netif *nif, void *machdep_hint) argument
105 if (dev->d_unit == nif->nif_unit)
111 efinet_probe(struct netif *nif, void *machdep_hint) argument
117 h = nif->nif_driver->netif_ifs[nif->nif_unit].dif_private;
127 "exclusive access: %lu\n", nif->nif_unit,
138 struct netif *nif = desc->io_netif; local
143 net = nif->nif_devdata;
168 struct netif *nif = desc->io_netif; local
176 net = nif
274 struct netif *nif = desc->io_netif; local
332 efinet_end(struct netif *nif) argument
[all...]
/freebsd-13-stable/stand/libofw/
H A Dofw_net.c79 ofwn_match(struct netif *nif, void *machdep_hint) argument
85 ofwn_probe(struct netif *nif, void *machdep_hint) argument
238 ofwn_end(struct netif *nif) argument
/freebsd-13-stable/stand/i386/libi386/
H A Dpxe.c72 static int pxe_netif_match(struct netif *nif, void *machdep_hint);
73 static int pxe_netif_probe(struct netif *nif, void *machdep_hint);
77 static void pxe_netif_end(struct netif *nif);
348 pxe_netif_match(struct netif *nif, void *machdep_hint) argument
354 pxe_netif_probe(struct netif *nif, void *machdep_hint) argument
363 pxe_netif_end(struct netif *nif) argument
/freebsd-13-stable/lib/libusb/
H A Dlibusb10_desc.c108 uint8_t nif; local
126 nalt = nif = pconf->num_interface;
130 for (i = 0; i < nif; i++) {
160 (nif * sizeof(libusb_interface)) +
177 ifd = (libusb_interface_descriptor *) (pconfd->interface + nif);
200 for (i = 0; i < nif; i++) {
216 for (i = 0; i < nif; i++) {
/freebsd-13-stable/contrib/ncurses/
H A Dconvert_configure.pl107 s/^\s*host=`.*\$ac_config_sub \$host_alias`/$&\nif test -z "\$host"; then host=\$host_alias; fi/;
/freebsd-13-stable/bin/sh/
H A Dparser.c442 n1 = (union node *)stalloc(sizeof (struct nif));
444 if ((n1->nif.test = list(0)) == NULL)
447 n1->nif.ifpart = list(0);
450 n2->nif.elsepart = (union node *)stalloc(sizeof (struct nif));
451 n2 = n2->nif.elsepart;
453 if ((n2->nif.test = list(0)) == NULL)
456 n2->nif.ifpart = list(0);
459 n2->nif.elsepart = list(0);
461 n2->nif
[all...]
H A Deval.c241 evaltree(n->nif.test, EV_TESTED);
245 next = n->nif.ifpart;
246 else if (n->nif.elsepart)
247 next = n->nif.elsepart;
H A Djobs.c1427 cmdtxt(n->nif.test);
1429 cmdtxt(n->nif.ifpart);
/freebsd-13-stable/sbin/fsck_ffs/
H A Dinode.c169 int i, n, (*func)(struct inodesc *), nif; local
190 nif = NINDIR(&sblock);
192 nif = howmany(isize, sizepb);
193 if (idesc->id_func == pass1check && nif < NINDIR(&sblock)) {
194 for (i = nif; i < NINDIR(&sblock); i++) {
208 for (i = 0; i < nif; i++) {
/freebsd-13-stable/contrib/ntp/ntpd/
H A Dntp_io.c2607 unsigned int nif, ni4, ni6; local
2609 nif = ni4 = ni6 = 0;
2642 nif++;
2657 nif++;
2677 nif++;
2690 if (nif != 0) {
2692 DPRINTF(1, ("io_setbclient: listening to %d broadcast addresses\n", nif));
/freebsd-13-stable/contrib/libpcap/
H A Dpcap-rpcap.c2350 int nif; /* Number of interfaces listed */ local
2387 nif = ntohs(header.value);
2390 for (i = 0; i < nif; i++)
/freebsd-13-stable/contrib/libpcap/rpcapd/
H A Ddaemon.c1339 uint16 nif = 0; // counts the number of interface listed local
1370 nif++;
1406 RPCAP_MSG_FINDALLIF_REPLY, nif, replylen);
/freebsd-13-stable/sys/dev/netmap/
H A Dnetmap_mem2.c277 netmap_mem_if_delete(struct netmap_adapter *na, struct netmap_if *nif) argument
282 nmd->ops->nmd_if_delete(na, nif);

Completed in 303 milliseconds