Searched refs:devlistp (Results 1 - 12 of 12) sorted by relevance

/freebsd-9.3-release/contrib/libpcap/
H A Dpcap-snf.h2 int snf_findalldevs(pcap_if_t **devlistp, char *errbuf);
H A Dpcap-can-linux.h36 int can_findalldevs(pcap_if_t **devlistp, char *errbuf);
H A Dpcap-septel.h15 int septel_findalldevs(pcap_if_t **devlistp, char *errbuf);
H A Dpcap-dag.h14 int dag_findalldevs(pcap_if_t **devlistp, char *errbuf);
H A Dpcap-septel.c251 septel_findalldevs(pcap_if_t **devlistp, char *errbuf) argument
257 pcap_add_if(devlistp,name,0,description,errbuf);
H A Dpcap-can-linux.c76 can_findalldevs(pcap_if_t **devlistp, char *errbuf) argument
H A Dpcap-snf.c247 snf_findalldevs(pcap_if_t **devlistp, char *errbuf) argument
H A Dpcap-dag.c900 dag_findalldevs(pcap_if_t **devlistp, char *errbuf) argument
917 if (pcap_add_if(devlistp, name, 0, NULL, errbuf) == -1) {
932 if (pcap_add_if(devlistp, name, 0, NULL, errbuf) == -1) {
H A Dpcap-linux.c1871 scan_sys_class_net(pcap_if_t **devlistp, char *errbuf) argument
2014 if (pcap_add_if(devlistp, name, ifrflags.ifr_flags, NULL,
2049 scan_proc_net_dev(pcap_if_t **devlistp, char *errbuf) argument
2161 if (pcap_add_if(devlistp, name, ifrflags.ifr_flags, NULL,
/freebsd-9.3-release/sys/dev/siba/
H A Dsiba_bwn.c181 device_t *devlistp; local
184 error = device_get_children(dev, &devlistp, &devcnt);
189 device_shutdown(devlistp[i]);
190 free(devlistp, M_TEMP);
199 device_t *devlistp; local
202 error = device_get_children(dev, &devlistp, &devcnt);
207 error = DEVICE_SUSPEND(devlistp[i]);
210 DEVICE_RESUME(devlistp[j]);
211 free(devlistp, M_TEMP);
215 free(devlistp, M_TEM
224 device_t *devlistp; local
[all...]
/freebsd-9.3-release/sys/dev/firewire/
H A Dfirewire.c738 device_t *devlistp; local
754 if (device_get_children(fc->bdev, &devlistp, &devcnt) == 0) {
756 if (device_get_state(devlistp[i]) >= DS_ATTACHED) {
757 fdc = device_get_softc(devlistp[i]);
761 free(devlistp, M_TEMP);
1803 device_t *devlistp; local
1832 err = device_get_children(fc->bdev, &devlistp, &devcnt);
1835 if (device_get_state(devlistp[i]) >= DS_ATTACHED) {
1836 fdc = device_get_softc(devlistp[i]);
1841 free(devlistp, M_TEM
[all...]
/freebsd-9.3-release/sys/kern/
H A Dsubr_bus.c1354 * is allocated and returned in @p *devlistp. The number of devices
1359 * @param devlistp points at location for array pointer return
1367 devclass_get_devices(devclass_t dc, device_t **devlistp, int *devcountp) argument
1385 *devlistp = list;
2162 * is allocated and returned in @p *devlistp. The number of devices
2167 * @param devlistp points at location for array pointer return
2175 device_get_children(device_t dev, device_t **devlistp, int *devcountp) argument
2186 *devlistp = NULL;
2201 *devlistp = list;

Completed in 108 milliseconds