Symbol: interface
sbin/pfctl/parse.y
1425
queuespec : QUEUE STRING interface queue_opts {
sbin/pfctl/parse.y
2036
pfrule : action dir logquick interface af proto fromto
sbin/pfctl/parse.y
2892
interface : /* empty */ { $$ = NULL; }
sbin/pfctl/parse.y
471
struct node_if *interface;
sbin/pfctl/parse.y
4782
LOOP_THROUGH(struct node_if, interface, interfaces,
sbin/pfctl/parse.y
4801
if (strlcpy(qspec.ifname, interface->ifname,
sbin/pfctl/parse.y
5152
LOOP_THROUGH(struct node_if, interface, interfaces,
sbin/pfctl/parse.y
5184
(src_host->ifindex && *interface->ifname &&
sbin/pfctl/parse.y
5185
src_host->ifindex != ifa_nametoindex(interface->ifname)) ||
sbin/pfctl/parse.y
5186
(dst_host->ifindex && *interface->ifname &&
sbin/pfctl/parse.y
5187
dst_host->ifindex != ifa_nametoindex(interface->ifname)))
sbin/pfctl/parse.y
5194
if (*interface->ifname)
sbin/pfctl/parse.y
5195
strlcpy(r->ifname, interface->ifname,
sbin/pfctl/parse.y
5204
if (interface->use_rdomain)
sbin/pfctl/parse.y
5205
r->onrdomain = interface->rdomain;
sbin/pfctl/parse.y
5240
r->ifnot = interface->not;
sbin/pfctl/parse.y
5381
expand_rule(&rb, 1, interface, NULL, &binat, NULL,
sbin/pfctl/parse.y
5434
LOOP_THROUGH(struct node_if, interface, interfaces,
sbin/pfctl/parse.y
5436
printf(" %s", interface->ifname);
sbin/pfctl/parse.y
5437
if (interface->not) {
sbin/pfctl/parse.y
5440
} else if (interface->use_rdomain) {
sbin/pfctl/parse.y
5445
interface->ifname, PFI_IFLAG_SKIP, 1);
sbin/pfctl/parse.y
551
%type <v.interface> interface if_list if_item_not if_item
sbin/pfctl/parse.y
583
%type <v.interface> antispoof_ifspc antispoof_iflst antispoof_if
sbin/pfctl/parse.y
748
| SET SKIP interface {
sbin/pfctl/parse.y
937
anchorrule : ANCHOR anchorname dir quick interface af proto fromto
sbin/pflogd/pflogd.c
108
cur_snaplen, interface, filename);
sbin/pflogd/pflogd.c
290
hpcap = pflog_read_live(interface, snaplen, 1, PCAP_TO_MS, errbuf);
sbin/pflogd/pflogd.c
623
interface = optarg;
sbin/pflogd/pflogd.c
63
char *interface = PFLOGD_DEFAULT_IF;
sbin/pflogd/pflogd.c
652
if (!if_exists(interface)) {
sbin/pflogd/pflogd.c
653
warn("Failed to initialize: %s", interface);
sbin/pflogd/pflogd.c
654
logmsg(LOG_ERR, "Failed to initialize: %s", interface);
sbin/pflogd/pflogd.c
729
if (!if_exists(interface)) {
sbin/pflogd/pflogd.c
731
interface);
sbin/pflogd/privsep.c
253
hpcap = pcap_create(interface, errbuf);
sbin/pflogd/privsep.c
60
extern char *interface;
sys/arch/i386/pci/pciide_machdep.c
109
pcireg_t interface;
sys/arch/i386/pci/pciide_machdep.c
130
interface = PCI_INTERFACE(pa->pa_class);
sys/arch/i386/pci/pciide_machdep.c
132
pciide_print_channels(sc->sc_wdcdev.nchannels, interface);
sys/arch/i386/pci/pciide_machdep.c
136
if (pciide_chansetup(sc, 0, interface) == 0)
sys/arch/i386/pci/pciide_machdep.c
139
pciide_map_compat_intr(pa, cp, 0, interface);
sys/arch/i386/pci/pciide_machdep.c
143
pciide_mapchan(pa, cp, interface,
sys/arch/i386/pci/pciide_machdep.c
146
pciide_unmap_compat_intr(pa, cp, 0, interface);
sys/arch/octeon/dev/cn30xxgmx.c
172
cn30xxgmx_get_phy_phandle(int interface, int port)
sys/arch/octeon/dev/cn30xxgmx.c
180
interface, port);
sys/dev/acpi/acpi.c
484
int interface)
sys/dev/acpi/acpi.c
503
res.v_package[2]->v_integer == interface)
sys/dev/pci/drm/i915/gvt/scheduler.c
1469
unsigned int interface)
sys/dev/pci/drm/i915/gvt/scheduler.c
1479
if (drm_WARN_ON(&i915->drm, interface >= ARRAY_SIZE(ops)))
sys/dev/pci/drm/i915/gvt/scheduler.c
1483
interface == 0 && engine_mask != ALL_ENGINES))
sys/dev/pci/drm/i915/gvt/scheduler.c
1489
if (interface == 0) {
sys/dev/pci/drm/i915/gvt/scheduler.c
1497
ret = ops[interface]->init(vgpu, engine_mask);
sys/dev/pci/drm/i915/gvt/scheduler.c
1501
s->ops = ops[interface];
sys/dev/pci/drm/i915/gvt/scheduler.c
1502
s->virtual_submission_interface = interface;
sys/dev/pci/drm/i915/gvt/scheduler.h
154
unsigned int interface);
sys/dev/pci/pci_subr.c
335
pci_interface_t interface;
sys/dev/pci/pci_subr.c
351
interface = PCI_INTERFACE(class_reg);
sys/dev/pci/pci_subr.c
400
", interface 0x%02x", interface);
sys/dev/pci/pciide.c
2264
pciide_chansetup(struct pciide_softc *sc, int channel, pcireg_t interface)
sys/dev/pci/pciide.c
2294
pcireg_t interface, bus_size_t *cmdsizep, bus_size_t *ctlsizep,
sys/dev/pci/pciide.c
2299
if (interface & PCIIDE_INTERFACE_PCI(wdc_cp->channel))
sys/dev/pci/pciide.c
2351
int compatchan, int interface)
sys/dev/pci/pciide.c
2356
if ((interface & PCIIDE_INTERFACE_PCI(wdc_cp->channel)) != 0)
sys/dev/pci/pciide.c
2375
int compatchan, int interface)
sys/dev/pci/pciide.c
2379
if ((interface & PCIIDE_INTERFACE_PCI(wdc_cp->channel)) != 0)
sys/dev/pci/pciide.c
2386
pciide_print_channels(int nchannels, pcireg_t interface)
sys/dev/pci/pciide.c
2392
(interface & PCIIDE_INTERFACE_SETTABLE(i)) ?
sys/dev/pci/pciide.c
2394
(interface & PCIIDE_INTERFACE_PCI(i)) ? "native-PCI" :
sys/dev/pci/pciide.c
2411
pcireg_t interface = PCI_INTERFACE(pa->pa_class);
sys/dev/pci/pciide.c
2419
if (interface & PCIIDE_INTERFACE_BUS_MASTER_DMA) {
sys/dev/pci/pciide.c
2445
pciide_print_channels(sc->sc_wdcdev.nchannels, interface);
sys/dev/pci/pciide.c
2449
if (pciide_chansetup(sc, channel, interface) == 0)
sys/dev/pci/pciide.c
2451
if (interface & PCIIDE_INTERFACE_PCI(channel)) {
sys/dev/pci/pciide.c
2464
pciide_map_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
2492
pciide_unmap_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
2495
if (interface & PCIIDE_INTERFACE_PCI(channel))
sys/dev/pci/pciide.c
2565
pcireg_t interface = PCI_INTERFACE(pa->pa_class);
sys/dev/pci/pciide.c
2569
if (interface == 0) {
sys/dev/pci/pciide.c
2572
interface = PCIIDE_INTERFACE_BUS_MASTER_DMA |
sys/dev/pci/pciide.c
2598
if (pciide_chansetup(sc, channel, interface) == 0)
sys/dev/pci/pciide.c
2600
pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
sys/dev/pci/pciide.c
2694
pcireg_t interface = PCI_INTERFACE(pa->pa_class);
sys/dev/pci/pciide.c
2763
pciide_print_channels(sc->sc_wdcdev.nchannels, interface);
sys/dev/pci/pciide.c
2770
if (pciide_chansetup(sc, channel, interface) == 0)
sys/dev/pci/pciide.c
2780
pciide_map_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
2783
pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
sys/dev/pci/pciide.c
2798
pciide_unmap_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
2808
pcireg_t interface = PCI_INTERFACE(pa->pa_class);
sys/dev/pci/pciide.c
2862
interface |= PCIIDE_INTERFACE_PCI(0) |
sys/dev/pci/pciide.c
2877
interface |= PCIIDE_INTERFACE_PCI(0) |
sys/dev/pci/pciide.c
2894
pciide_print_channels(sc->sc_wdcdev.nchannels, interface);
sys/dev/pci/pciide.c
2898
if (pciide_chansetup(sc, channel, interface) == 0)
sys/dev/pci/pciide.c
2901
pciide_map_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
2905
pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
sys/dev/pci/pciide.c
2911
pciide_unmap_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
3258
pcireg_t interface = PCI_INTERFACE(pa->pa_class);
sys/dev/pci/pciide.c
3291
pciide_print_channels(sc->sc_wdcdev.nchannels, interface);
sys/dev/pci/pciide.c
3295
if (pciide_chansetup(sc, channel, interface) == 0)
sys/dev/pci/pciide.c
3304
pciide_map_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
3308
pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
sys/dev/pci/pciide.c
3315
pciide_unmap_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
3442
pcireg_t interface;
sys/dev/pci/pciide.c
3453
interface = PCI_INTERFACE(pa->pa_class);
sys/dev/pci/pciide.c
3455
interface = PCIIDE_INTERFACE_BUS_MASTER_DMA |
sys/dev/pci/pciide.c
3559
pciide_print_channels(sc->sc_wdcdev.nchannels, interface);
sys/dev/pci/pciide.c
3571
if (pciide_chansetup(sc, channel, interface) == 0)
sys/dev/pci/pciide.c
3584
pciide_map_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
3588
pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
sys/dev/pci/pciide.c
3606
pciide_unmap_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
3730
pcireg_t interface;
sys/dev/pci/pciide.c
3738
interface = PCIIDE_INTERFACE_SETTABLE(0) |
sys/dev/pci/pciide.c
3742
interface |= PCIIDE_INTERFACE_PCI(0) |
sys/dev/pci/pciide.c
3745
interface = PCI_INTERFACE(pa->pa_class);
sys/dev/pci/pciide.c
3790
pciide_map_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
3793
pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize, cmd_pci_intr);
sys/dev/pci/pciide.c
3795
pciide_unmap_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
3803
pciide_unmap_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
3845
pcireg_t interface = PCI_INTERFACE(pa->pa_class);
sys/dev/pci/pciide.c
3854
pciide_print_channels(sc->sc_wdcdev.nchannels, interface);
sys/dev/pci/pciide.c
3867
pcireg_t interface;
sys/dev/pci/pciide.c
3874
interface = PCIIDE_INTERFACE_SETTABLE(0) |
sys/dev/pci/pciide.c
3878
interface |= PCIIDE_INTERFACE_PCI(0) |
sys/dev/pci/pciide.c
3881
interface = PCI_INTERFACE(pa->pa_class);
sys/dev/pci/pciide.c
3934
pciide_print_channels(sc->sc_wdcdev.nchannels, interface);
sys/dev/pci/pciide.c
4115
int interface, i, reg;
sys/dev/pci/pciide.c
4121
interface = PCIIDE_INTERFACE_SETTABLE(0) |
sys/dev/pci/pciide.c
4123
interface |= PCIIDE_INTERFACE_PCI(0) |
sys/dev/pci/pciide.c
4126
interface = PCI_INTERFACE(pa->pa_class);
sys/dev/pci/pciide.c
4149
(interface & PCIIDE_INTERFACE_SETTABLE(channel)) ?
sys/dev/pci/pciide.c
4151
(interface & PCIIDE_INTERFACE_PCI(channel)) ?
sys/dev/pci/pciide.c
4154
pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize, pciide_pci_intr);
sys/dev/pci/pciide.c
4157
pciide_map_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
4280
pcireg_t interface, scs_cmd, cfgctl;
sys/dev/pci/pciide.c
4363
interface = PCI_INTERFACE(pa->pa_class);
sys/dev/pci/pciide.c
4365
interface = PCIIDE_INTERFACE_BUS_MASTER_DMA |
sys/dev/pci/pciide.c
4371
if (pciide_chansetup(sc, channel, interface) == 0)
sys/dev/pci/pciide.c
4373
pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
sys/dev/pci/pciide.c
4882
pcireg_t interface = PCI_INTERFACE(pa->pa_class);
sys/dev/pci/pciide.c
4905
if (interface & PCIIDE_INTERFACE_BUS_MASTER_DMA) {
sys/dev/pci/pciide.c
4944
(interface & PCIIDE_INTERFACE_SETTABLE(0)) ?
sys/dev/pci/pciide.c
4946
if (interface & PCIIDE_INTERFACE_PCI(0)) {
sys/dev/pci/pciide.c
4958
pciide_map_compat_intr(pa, cp, cy->cy_compatchan, interface);
sys/dev/pci/pciide.c
4968
interface);
sys/dev/pci/pciide.c
5139
pcireg_t interface = PCI_INTERFACE(pa->pa_class);
sys/dev/pci/pciide.c
5229
pciide_print_channels(sc->sc_wdcdev.nchannels, interface);
sys/dev/pci/pciide.c
5233
if (pciide_chansetup(sc, channel, interface) == 0)
sys/dev/pci/pciide.c
5242
pciide_map_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
5245
pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
sys/dev/pci/pciide.c
5248
pciide_unmap_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
5260
pciide_unmap_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
5442
pcireg_t interface, ctl;
sys/dev/pci/pciide.c
5470
interface = PCI_INTERFACE(pci_conf_read(sc->sc_pc, sc->sc_tag,
sys/dev/pci/pciide.c
5472
interface &= ~PCIIDE_CHANSTATUS_EN; /* Reserved on PC87415 */
sys/dev/pci/pciide.c
5473
pciide_print_channels(sc->sc_wdcdev.nchannels, interface);
sys/dev/pci/pciide.c
5477
if (interface & (PCIIDE_INTERFACE_PCI(0) | PCIIDE_INTERFACE_PCI(1)))
sys/dev/pci/pciide.c
5485
if (pciide_chansetup(sc, channel, interface) == 0)
sys/dev/pci/pciide.c
5488
pciide_map_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
5492
pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
sys/dev/pci/pciide.c
5495
pciide_unmap_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
5626
pcireg_t interface = PCI_INTERFACE(pa->pa_class);
sys/dev/pci/pciide.c
5668
pciide_print_channels(sc->sc_wdcdev.nchannels, interface);
sys/dev/pci/pciide.c
5672
if (pciide_chansetup(sc, channel, interface) == 0)
sys/dev/pci/pciide.c
5674
pciide_map_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
5677
pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
sys/dev/pci/pciide.c
5680
pciide_unmap_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
5781
pcireg_t cr, interface;
sys/dev/pci/pciide.c
5830
interface = PCI_INTERFACE(pci_conf_read(sc->sc_pc, sc->sc_tag,
sys/dev/pci/pciide.c
5833
pciide_print_channels(sc->sc_wdcdev.nchannels, interface);
sys/dev/pci/pciide.c
5843
if (pciide_chansetup(sc, channel, interface) == 0)
sys/dev/pci/pciide.c
5845
if ((interface & PCIIDE_CHAN_EN(channel)) == 0) {
sys/dev/pci/pciide.c
5851
pciide_map_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
5854
pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
sys/dev/pci/pciide.c
5857
pciide_unmap_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
5866
pciide_unmap_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
6016
pcireg_t interface;
sys/dev/pci/pciide.c
6026
interface = PCI_INTERFACE(pa->pa_class);
sys/dev/pci/pciide.c
6028
interface = PCIIDE_INTERFACE_BUS_MASTER_DMA |
sys/dev/pci/pciide.c
6037
interface |= PCIIDE_INTERFACE_PCI(1);
sys/dev/pci/pciide.c
6100
if (pciide_chansetup(sc, i, interface) == 0)
sys/dev/pci/pciide.c
6102
if (interface & PCIIDE_INTERFACE_PCI(i)) {
sys/dev/pci/pciide.c
6341
pcireg_t interface, st, mode;
sys/dev/pci/pciide.c
6358
interface = PCIIDE_INTERFACE_SETTABLE(0) | PCIIDE_INTERFACE_SETTABLE(1);
sys/dev/pci/pciide.c
6360
interface |= PCIIDE_INTERFACE_PCI(0) | PCIIDE_INTERFACE_PCI(1);
sys/dev/pci/pciide.c
6395
pciide_print_channels(sc->sc_wdcdev.nchannels, interface);
sys/dev/pci/pciide.c
6455
if (pciide_chansetup(sc, channel, interface) == 0)
sys/dev/pci/pciide.c
6464
pciide_map_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
6468
pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
sys/dev/pci/pciide.c
6471
pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
sys/dev/pci/pciide.c
6474
pciide_unmap_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
6480
pciide_unmap_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
7320
pcireg_t interface = PCI_INTERFACE(pa->pa_class);
sys/dev/pci/pciide.c
7364
if (pciide_chansetup(sc, channel, interface) == 0)
sys/dev/pci/pciide.c
7366
pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
sys/dev/pci/pciide.c
7370
pciide_map_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
7836
pcireg_t interface;
sys/dev/pci/pciide.c
7844
interface = PCI_INTERFACE(pa->pa_class);
sys/dev/pci/pciide.c
7846
interface = PCIIDE_INTERFACE_BUS_MASTER_DMA |
sys/dev/pci/pciide.c
7883
if (pciide_chansetup(sc, i, interface) == 0)
sys/dev/pci/pciide.c
7885
if (interface & PCIIDE_INTERFACE_PCI(i)) {
sys/dev/pci/pciide.c
8012
pcireg_t interface = PCI_INTERFACE(pa->pa_class);
sys/dev/pci/pciide.c
8043
pciide_print_channels(sc->sc_wdcdev.nchannels, interface);
sys/dev/pci/pciide.c
8048
if (pciide_chansetup(sc, channel, interface) == 0)
sys/dev/pci/pciide.c
8058
pciide_map_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
8061
pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
sys/dev/pci/pciide.c
8064
pciide_unmap_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
8070
pciide_unmap_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
8210
pcireg_t interface;
sys/dev/pci/pciide.c
8242
interface = PCI_INTERFACE(pa->pa_class);
sys/dev/pci/pciide.c
8246
if (pciide_chansetup(sc, channel, interface) == 0)
sys/dev/pci/pciide.c
8248
pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
sys/dev/pci/pciide.c
8252
pciide_map_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
8262
pcireg_t interface;
sys/dev/pci/pciide.c
8269
interface = PCIIDE_INTERFACE_BUS_MASTER_DMA |
sys/dev/pci/pciide.c
8296
pciide_print_channels(sc->sc_wdcdev.nchannels, interface);
sys/dev/pci/pciide.c
8308
if (pciide_chansetup(sc, channel, interface) == 0)
sys/dev/pci/pciide.c
8310
pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
sys/dev/pci/pciide.c
8434
pcireg_t interface = PCI_INTERFACE(pa->pa_class);
sys/dev/pci/pciide.c
8455
pciide_print_channels(sc->sc_wdcdev.nchannels, interface);
sys/dev/pci/pciide.c
8459
if (pciide_chansetup(sc, channel, interface) == 0)
sys/dev/pci/pciide.c
8461
pciide_map_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
8464
pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
sys/dev/pci/pciide.c
8467
pciide_unmap_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
8565
pcireg_t interface = PCI_INTERFACE(pa->pa_class);
sys/dev/pci/pciide.c
8590
pciide_print_channels(sc->sc_wdcdev.nchannels, interface);
sys/dev/pci/pciide.c
8595
if (pciide_chansetup(sc, channel, interface) == 0)
sys/dev/pci/pciide.c
8607
pciide_map_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
8610
pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
sys/dev/pci/pciide.c
8613
pciide_unmap_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
8619
pciide_unmap_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
8709
pcireg_t interface = PCI_INTERFACE(pa->pa_class);
sys/dev/pci/pciide.c
8731
pciide_print_channels(sc->sc_wdcdev.nchannels, interface);
sys/dev/pci/pciide.c
8736
if (pciide_chansetup(sc, channel, interface) == 0)
sys/dev/pci/pciide.c
8739
pciide_map_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
8742
pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
sys/dev/pci/pciide.c
8745
pciide_unmap_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
8823
pcireg_t interface = PCI_INTERFACE(pa->pa_class);
sys/dev/pci/pciide.c
8843
pciide_print_channels(sc->sc_wdcdev.nchannels, interface);
sys/dev/pci/pciide.c
8848
if (pciide_chansetup(sc, channel, interface) == 0)
sys/dev/pci/pciide.c
8851
pciide_map_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
8854
pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
sys/dev/pci/pciide.c
8857
pciide_unmap_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
8935
pcireg_t interface = PCI_INTERFACE(pa->pa_class);
sys/dev/pci/pciide.c
8954
pciide_print_channels(sc->sc_wdcdev.nchannels, interface);
sys/dev/pci/pciide.c
8967
if (pciide_chansetup(sc, channel, interface) == 0)
sys/dev/pci/pciide.c
8976
pciide_map_compat_intr(pa, cp, channel, interface);
sys/dev/pci/pciide.c
8979
pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
sys/dev/pci/pciide.c
8993
pciide_unmap_compat_intr(pa, cp, channel, interface);
sys/dev/pci/ppb.c
159
pci_interface_t interface;
sys/dev/pci/ppb.c
248
interface = PCI_INTERFACE(pa->pa_class);
sys/dev/pci/ppb.c
257
interface = PPB_INTERFACE_SUBTRACTIVE;
sys/dev/pci/ppb.c
259
if (interface != PPB_INTERFACE_SUBTRACTIVE)
sys/dev/pci/ppb.c
332
if (interface == PPB_INTERFACE_SUBTRACTIVE) {
sys/net/if_aggr.c
3137
struct kstat_kv interface;
sys/net/if_aggr.c
3201
kstat_kv_init(&pk->interface, "interface", KSTAT_KV_T_ISTR);
sys/net/if_aggr.c
3202
strlcpy(kstat_kv_istr(&pk->interface), ifp0->if_xname,
sys/net/if_aggr.c
3203
sizeof(kstat_kv_istr(&pk->interface)));
sys/net/if_veb.c
3401
struct kstat_kv interface;
sys/net/if_veb.c
3463
kstat_kv_init(&kvs->interface, "interface", KSTAT_KV_T_ISTR);
sys/net/if_veb.c
3464
strlcpy(kstat_kv_istr(&kvs->interface), ifp0->if_xname,
sys/net/if_veb.c
3465
sizeof(kstat_kv_istr(&kvs->interface)));
usr.bin/netstat/if.c
148
if (interface != 0 && strcmp(name, interface) != 0)
usr.bin/netstat/if.c
176
if (interface != 0 && strcmp(name, interface) != 0)
usr.bin/netstat/if.c
334
__progname, interface);
usr.bin/netstat/if.c
546
if (interface != NULL && !strcmp(name, interface)) {
usr.bin/netstat/if.c
548
} else if (interface == NULL && foundone == 0 &&
usr.bin/netstat/if.c
580
if (interface == NULL && foundone == 0) {
usr.bin/netstat/main.c
132
char *interface; /* desired i/f for stats, or NULL for all i/fs */
usr.bin/netstat/main.c
211
interface = optarg;
usr.bin/netstat/main.c
278
interface = optarg;
usr.bin/netstat/main.c
308
if (interface == NULL)
usr.bin/netstat/main.c
310
net80211_ifstats(interface);
usr.bin/netstat/netstat.h
67
extern char *interface; /* desired i/f for stats, or NULL for all i/fs */
usr.sbin/bgpctl/bgpctl.c
494
if (output->interface == NULL)
usr.sbin/bgpctl/bgpctl.c
498
output->interface(&iface);
usr.sbin/bgpctl/bgpctl.h
29
void (*interface)(struct ctl_show_interface *);
usr.sbin/bgpctl/output.c
1251
.interface = show_interface,
usr.sbin/bgpctl/output_json.c
1085
.interface = json_interface,
usr.sbin/dhcpd/bootp.c
142
packet->interface->name);
usr.sbin/dhcpd/bootp.c
156
packet->interface->name);
usr.sbin/dhcpd/bootp.c
172
packet->interface->name);
usr.sbin/dhcpd/bootp.c
308
raw.siaddr = packet->interface->primary_address;
usr.sbin/dhcpd/bootp.c
324
from = packet->interface->primary_address;
usr.sbin/dhcpd/bootp.c
330
inet_ntoa(packet->raw->giaddr) : packet->interface->name);
usr.sbin/dhcpd/bootp.c
344
(void) packet->interface->send_packet(packet->interface, &raw,
usr.sbin/dhcpd/bootp.c
364
(void) packet->interface->send_packet(packet->interface, &raw,
usr.sbin/dhcpd/bootp.c
83
inet_ntoa(packet->raw->giaddr) : packet->interface->name,
usr.sbin/dhcpd/bpf.c
237
send_packet(struct interface_info *interface, struct dhcp_packet *raw,
usr.sbin/dhcpd/bpf.c
247
assemble_hw_header(interface, buf, &bufp, hto);
usr.sbin/dhcpd/bpf.c
248
assemble_udp_ip_header(interface, buf, &bufp, from.s_addr,
usr.sbin/dhcpd/bpf.c
257
result = writev(interface->wfdesc, iov, 2);
usr.sbin/dhcpd/bpf.c
264
receive_packet(struct interface_info *interface, unsigned char *buf,
usr.sbin/dhcpd/bpf.c
282
if (interface->rbuf_offset >= interface->rbuf_len) {
usr.sbin/dhcpd/bpf.c
283
length = read(interface->rfdesc, interface->rbuf,
usr.sbin/dhcpd/bpf.c
284
interface->rbuf_max);
usr.sbin/dhcpd/bpf.c
287
interface->rbuf_offset = 0;
usr.sbin/dhcpd/bpf.c
288
interface->rbuf_len = length;
usr.sbin/dhcpd/bpf.c
296
if (interface->rbuf_len - interface->rbuf_offset <
usr.sbin/dhcpd/bpf.c
298
interface->rbuf_offset = interface->rbuf_len;
usr.sbin/dhcpd/bpf.c
303
memcpy(&hdr, &interface->rbuf[interface->rbuf_offset],
usr.sbin/dhcpd/bpf.c
310
if (interface->rbuf_offset + hdr.bh_hdrlen + hdr.bh_caplen >
usr.sbin/dhcpd/bpf.c
311
interface->rbuf_len) {
usr.sbin/dhcpd/bpf.c
312
interface->rbuf_offset = interface->rbuf_len;
usr.sbin/dhcpd/bpf.c
322
interface->rbuf_offset = BPF_WORDALIGN(
usr.sbin/dhcpd/bpf.c
323
interface->rbuf_offset + hdr.bh_hdrlen +
usr.sbin/dhcpd/bpf.c
329
interface->rbuf_offset += hdr.bh_hdrlen;
usr.sbin/dhcpd/bpf.c
332
offset = decode_hw_header(interface->rbuf +
usr.sbin/dhcpd/bpf.c
333
interface->rbuf_offset, hdr.bh_caplen, hfrom);
usr.sbin/dhcpd/bpf.c
341
interface->rbuf_offset = BPF_WORDALIGN(
usr.sbin/dhcpd/bpf.c
342
interface->rbuf_offset + hdr.bh_caplen);
usr.sbin/dhcpd/bpf.c
345
interface->rbuf_offset += offset;
usr.sbin/dhcpd/bpf.c
349
offset = decode_udp_ip_header(interface->rbuf +
usr.sbin/dhcpd/bpf.c
350
interface->rbuf_offset, hdr.bh_caplen, from,
usr.sbin/dhcpd/bpf.c
355
interface->rbuf_offset = BPF_WORDALIGN(
usr.sbin/dhcpd/bpf.c
356
interface->rbuf_offset + hdr.bh_caplen);
usr.sbin/dhcpd/bpf.c
359
interface->rbuf_offset += offset;
usr.sbin/dhcpd/bpf.c
368
interface->rbuf_offset = BPF_WORDALIGN(
usr.sbin/dhcpd/bpf.c
369
interface->rbuf_offset + hdr.bh_caplen);
usr.sbin/dhcpd/bpf.c
374
memcpy(buf, interface->rbuf + interface->rbuf_offset,
usr.sbin/dhcpd/bpf.c
376
interface->rbuf_offset = BPF_WORDALIGN(interface->rbuf_offset +
usr.sbin/dhcpd/confpars.c
267
share->interface =
usr.sbin/dhcpd/confpars.c
268
share->subnets->interface;
usr.sbin/dhcpd/confpars.c
400
host_decl->interface = hardware;
usr.sbin/dhcpd/confpars.c
660
share->interface = NULL;
usr.sbin/dhcpd/dhcp.c
113
packet->interface->name);
usr.sbin/dhcpd/dhcp.c
1794
mock.hardware_addr = hp->interface;
usr.sbin/dhcpd/dhcp.c
232
packet->interface->name);
usr.sbin/dhcpd/dhcp.c
435
packet->interface->name,
usr.sbin/dhcpd/dhcp.c
460
packet->interface->name);
usr.sbin/dhcpd/dhcp.c
474
packet->interface->name);
usr.sbin/dhcpd/dhcp.c
481
inet_ntoa(packet->raw->giaddr) : packet->interface->name);
usr.sbin/dhcpd/dhcp.c
504
packet->interface->name);
usr.sbin/dhcpd/dhcp.c
652
raw.siaddr = packet->interface->primary_address;
usr.sbin/dhcpd/dhcp.c
667
inet_ntoa(packet->raw->giaddr) : packet->interface->name);
usr.sbin/dhcpd/dhcp.c
674
from = packet->interface->primary_address;
usr.sbin/dhcpd/dhcp.c
688
result = packet->interface->send_packet(packet->interface, &raw,
usr.sbin/dhcpd/dhcp.c
699
result = packet->interface->send_packet(packet->interface, &raw,
usr.sbin/dhcpd/dhcp.c
762
state->shared_network = packet->interface->shared_network;
usr.sbin/dhcpd/dhcp.c
964
state->ip = packet->interface;
usr.sbin/dhcpd/dhcpd.h
209
struct hardware interface;
usr.sbin/dhcpd/dhcpd.h
218
struct interface_info *interface;
usr.sbin/dhcpd/dhcpd.h
230
struct interface_info *interface;
usr.sbin/dhcpd/dhcpd.h
84
struct interface_info *interface; /* Interface on which packet
usr.sbin/dhcpd/dispatch.c
220
if (!subnet->interface) {
usr.sbin/dhcpd/dispatch.c
221
subnet->interface = tmp;
usr.sbin/dhcpd/dispatch.c
223
} else if (subnet->interface != tmp) {
usr.sbin/dhcpd/dispatch.c
227
subnet->interface->name,
usr.sbin/dhcpd/dispatch.c
240
if (!share->interface) {
usr.sbin/dhcpd/dispatch.c
241
share->interface = tmp;
usr.sbin/dhcpd/dispatch.c
242
} else if (share->interface != tmp) {
usr.sbin/dhcpd/dispatch.c
246
share->interface->name,
usr.sbin/dhcpd/dispatch.c
512
packet->shared_network = packet->interface->shared_network;
usr.sbin/dhcpd/memory.c
79
if (hd->interface.hlen) {
usr.sbin/dhcpd/memory.c
84
hd->interface.haddr, hd->interface.hlen);
usr.sbin/dhcpd/memory.c
91
add_hash(host_hw_addr_hash, hd->interface.haddr,
usr.sbin/dhcpd/memory.c
92
hd->interface.hlen, (unsigned char *)hd);
usr.sbin/dhcpd/options.c
530
do_packet(struct interface_info *interface, struct dhcp_packet *packet,
usr.sbin/dhcpd/options.c
546
tp.interface = interface;
usr.sbin/dhcpd/options.c
555
dhcp(&tp, interface->is_udpsock);
usr.sbin/dhcpd/packet.c
116
assemble_udp_ip_header(struct interface_info *interface, unsigned char *buf,
usr.sbin/dhcpd/packet.c
96
assemble_hw_header(struct interface_info *interface, unsigned char *buf,
usr.sbin/dhcpd/udpsock.c
176
udpsock_send_packet(struct interface_info *interface, struct dhcp_packet *raw,
usr.sbin/dhcpd/udpsock.c
180
return (sendto(interface->wfdesc, raw, len, 0, (struct sockaddr *)to,
usr.sbin/dhcrelay/bpf.c
333
send_packet(struct interface_info *interface,
usr.sbin/dhcrelay/bpf.c
343
if (interface->hw_address.htype == HTYPE_IPSEC_TUNNEL) {
usr.sbin/dhcrelay/bpf.c
352
interface->hw_address.htype)) == -1)
usr.sbin/dhcrelay/bpf.c
364
result = writev(interface->wfdesc, iov, 2);
usr.sbin/dhcrelay/bpf.c
372
receive_packet(struct interface_info *interface, unsigned char *buf,
usr.sbin/dhcrelay/bpf.c
391
if (interface->rbuf_offset == interface->rbuf_len) {
usr.sbin/dhcrelay/bpf.c
392
length = read(interface->rfdesc, interface->rbuf,
usr.sbin/dhcrelay/bpf.c
393
interface->rbuf_max);
usr.sbin/dhcrelay/bpf.c
396
interface->rbuf_offset = 0;
usr.sbin/dhcrelay/bpf.c
397
interface->rbuf_len = length;
usr.sbin/dhcrelay/bpf.c
405
if (interface->rbuf_len - interface->rbuf_offset <
usr.sbin/dhcrelay/bpf.c
407
interface->rbuf_offset = interface->rbuf_len;
usr.sbin/dhcrelay/bpf.c
412
memcpy(&hdr, &interface->rbuf[interface->rbuf_offset],
usr.sbin/dhcrelay/bpf.c
419
if (interface->rbuf_offset + hdr.bh_hdrlen + hdr.bh_caplen >
usr.sbin/dhcrelay/bpf.c
420
interface->rbuf_len) {
usr.sbin/dhcrelay/bpf.c
421
interface->rbuf_offset = interface->rbuf_len;
usr.sbin/dhcrelay/bpf.c
431
interface->rbuf_offset += hdr.bh_hdrlen =
usr.sbin/dhcrelay/bpf.c
437
interface->rbuf_offset += hdr.bh_hdrlen;
usr.sbin/dhcrelay/bpf.c
440
offset = decode_hw_header(interface->rbuf,
usr.sbin/dhcrelay/bpf.c
441
interface->rbuf_len, interface->rbuf_offset, pc,
usr.sbin/dhcrelay/bpf.c
442
interface->hw_address.htype);
usr.sbin/dhcrelay/bpf.c
450
interface->rbuf_offset += hdr.bh_caplen;
usr.sbin/dhcrelay/bpf.c
455
offset = decode_udp_ip_header(interface->rbuf,
usr.sbin/dhcrelay/bpf.c
456
interface->rbuf_len, offset, pc, hdr.bh_csumflags);
usr.sbin/dhcrelay/bpf.c
460
interface->rbuf_offset += hdr.bh_caplen;
usr.sbin/dhcrelay/bpf.c
464
hdr.bh_caplen -= offset - interface->rbuf_offset;
usr.sbin/dhcrelay/bpf.c
465
interface->rbuf_offset = offset;
usr.sbin/dhcrelay/bpf.c
473
interface->rbuf_offset += hdr.bh_caplen;
usr.sbin/dhcrelay/bpf.c
478
memcpy(buf, interface->rbuf + interface->rbuf_offset,
usr.sbin/dhcrelay/bpf.c
480
interface->rbuf_offset += hdr.bh_caplen;
usr.sbin/dhcrelay6/bpf.c
272
send_packet(struct interface_info *interface,
usr.sbin/dhcrelay6/bpf.c
280
return send_packet_layer3(interface, raw, len, pc);
usr.sbin/dhcrelay6/bpf.c
292
result = writev(interface->wfdesc, iov, 2);
usr.sbin/dhcrelay6/bpf.c
300
receive_packet(struct interface_info *interface, unsigned char *buf,
usr.sbin/dhcrelay6/bpf.c
318
if (interface->rbuf_offset == interface->rbuf_len) {
usr.sbin/dhcrelay6/bpf.c
319
length = read(interface->rfdesc, interface->rbuf,
usr.sbin/dhcrelay6/bpf.c
320
interface->rbuf_max);
usr.sbin/dhcrelay6/bpf.c
323
interface->rbuf_offset = 0;
usr.sbin/dhcrelay6/bpf.c
324
interface->rbuf_len = length;
usr.sbin/dhcrelay6/bpf.c
332
if (interface->rbuf_len - interface->rbuf_offset <
usr.sbin/dhcrelay6/bpf.c
334
interface->rbuf_offset = interface->rbuf_len;
usr.sbin/dhcrelay6/bpf.c
339
memcpy(&hdr, &interface->rbuf[interface->rbuf_offset],
usr.sbin/dhcrelay6/bpf.c
346
if (interface->rbuf_offset + hdr.bh_hdrlen + hdr.bh_caplen >
usr.sbin/dhcrelay6/bpf.c
347
interface->rbuf_len) {
usr.sbin/dhcrelay6/bpf.c
348
interface->rbuf_offset = interface->rbuf_len;
usr.sbin/dhcrelay6/bpf.c
358
interface->rbuf_offset += hdr.bh_hdrlen =
usr.sbin/dhcrelay6/bpf.c
364
interface->rbuf_offset += hdr.bh_hdrlen;
usr.sbin/dhcrelay6/bpf.c
367
offset = decode_hw_header(interface->rbuf,
usr.sbin/dhcrelay6/bpf.c
368
interface->rbuf_offset, pc);
usr.sbin/dhcrelay6/bpf.c
376
interface->rbuf_offset += hdr.bh_caplen;
usr.sbin/dhcrelay6/bpf.c
379
interface->rbuf_offset += offset;
usr.sbin/dhcrelay6/bpf.c
383
offset = decode_udp_ip6_header(interface->rbuf,
usr.sbin/dhcrelay6/bpf.c
384
interface->rbuf_offset, pc, hdr.bh_caplen,
usr.sbin/dhcrelay6/bpf.c
389
interface->rbuf_offset += hdr.bh_caplen;
usr.sbin/dhcrelay6/bpf.c
392
interface->rbuf_offset += offset;
usr.sbin/dhcrelay6/bpf.c
401
interface->rbuf_offset += hdr.bh_caplen;
usr.sbin/dhcrelay6/bpf.c
406
memcpy(buf, interface->rbuf + interface->rbuf_offset,
usr.sbin/dhcrelay6/bpf.c
408
interface->rbuf_offset += hdr.bh_caplen;
usr.sbin/dvmrpd/parse.y
132
| grammar interface '\n'
usr.sbin/dvmrpd/parse.y
292
interface : INTERFACE STRING {
usr.sbin/dvmrpd/parse.y
358
groupoptsl : interface nl
usr.sbin/eigrpd/parse.y
330
asoptsl : interface
usr.sbin/eigrpd/parse.y
337
interface : INTERFACE STRING {
usr.sbin/ifstated/parse.y
116
%type <v.string> interface
usr.sbin/ifstated/parse.y
173
interface : STRING {
usr.sbin/ifstated/parse.y
253
if_test : interface '.' LINK '.' UP {
usr.sbin/ifstated/parse.y
256
| interface '.' LINK '.' DOWN {
usr.sbin/ifstated/parse.y
259
| interface '.' LINK '.' UNKNOWN {
usr.sbin/ldapd/parse.y
207
if (! interface($3, cert, &conf->listeners,
usr.sbin/ldapd/parse.y
84
int interface(const char *, const char *,
usr.sbin/ldpd/parse.y
364
| interface
usr.sbin/ldpd/parse.y
756
interface : INTERFACE STRING {
usr.sbin/lpd/parse.y
106
static int interface(struct listen_opts *);
usr.sbin/lpd/parse.y
729
if (interface(lo))
usr.sbin/map-mbone/mapper.c
64
struct interface *next;
usr.sbin/map-mbone/mapper.c
75
struct interface *interfaces; /* Else, neighbor data */
usr.sbin/mopd/common/device.c
133
char interface[IFNAME_SIZE];
usr.sbin/mopd/common/device.c
153
snprintf(interface, sizeof(interface), "ent%d\0", unit);
usr.sbin/mopd/common/device.c
155
snprintf(interface, sizeof(interface), "%s%d\0", dev, unit);
usr.sbin/mopd/common/device.c
157
snprintf(interface, sizeof(interface), "%s", ifname);
usr.sbin/mopd/common/device.c
163
if (strcmp(p->if_name, interface) == 0)
usr.sbin/mopd/common/device.c
166
syslog(LOG_INFO, "Initialized %s", interface);
usr.sbin/mopd/common/device.c
169
trans = pfTrans(interface);
usr.sbin/mopd/common/device.c
175
deviceOpen(interface, MOP_K_PROTO_RC, TRANS_ETHER);
usr.sbin/mopd/common/device.c
178
deviceOpen(interface, MOP_K_PROTO_RC, TRANS_8023);
usr.sbin/mopd/common/device.c
181
deviceOpen(interface, MOP_K_PROTO_RC, TRANS_ETHER);
usr.sbin/mopd/common/device.c
182
deviceOpen(interface, MOP_K_PROTO_RC, TRANS_8023);
usr.sbin/mopd/common/device.c
185
deviceOpen(interface, MOP_K_PROTO_RC, TRANS_ETHER + TRANS_8023);
usr.sbin/mopd/common/device.c
194
deviceOpen(interface, MOP_K_PROTO_DL, TRANS_ETHER);
usr.sbin/mopd/common/device.c
197
deviceOpen(interface, MOP_K_PROTO_DL, TRANS_8023);
usr.sbin/mopd/common/device.c
200
deviceOpen(interface, MOP_K_PROTO_DL, TRANS_ETHER);
usr.sbin/mopd/common/device.c
201
deviceOpen(interface, MOP_K_PROTO_DL, TRANS_8023);
usr.sbin/mopd/common/device.c
204
deviceOpen(interface, MOP_K_PROTO_DL, TRANS_ETHER + TRANS_8023);
usr.sbin/mopd/common/pf.c
109
strncpy(ifr.ifr_name, interface, sizeof ifr.ifr_name);
usr.sbin/mopd/common/pf.c
121
syslog(LOG_ERR,"pfInit: %s is not ethernet", interface);
usr.sbin/mopd/common/pf.c
159
pfAddMulti(int s, char *interface, char *addr)
usr.sbin/mopd/common/pf.c
164
strncpy(ifr.ifr_name, interface, sizeof(ifr.ifr_name) - 1);
usr.sbin/mopd/common/pf.c
191
pfDelMulti(int s, char *interface, char *addr)
usr.sbin/mopd/common/pf.c
196
strncpy(ifr.ifr_name, interface, sizeof (ifr.ifr_name) - 1);
usr.sbin/mopd/common/pf.c
67
pfTrans(char *interface)
usr.sbin/mopd/common/pf.c
76
pfInit(char *interface, int mode, u_short protocol, int typ)
usr.sbin/mopd/mopd/mopd.c
105
interface = argv[optind++];
usr.sbin/mopd/mopd/mopd.c
107
if ((AllFlag && interface) || (!AllFlag && interface == 0) ||
usr.sbin/mopd/mopd/mopd.c
131
deviceInitOne(interface);
usr.sbin/mopd/mopd/mopd.c
70
char *interface;
usr.sbin/mopd/mopprobe/mopprobe.c
100
(!AllFlag && interface == 0) ||
usr.sbin/mopd/mopprobe/mopprobe.c
107
deviceInitOne(interface);
usr.sbin/mopd/mopprobe/mopprobe.c
69
char *interface;
usr.sbin/mopd/mopprobe/mopprobe.c
97
interface = argv[optind++];
usr.sbin/mopd/mopprobe/mopprobe.c
99
if ((AllFlag && interface) ||
usr.sbin/mopd/moptrace/moptrace.c
63
char *interface;
usr.sbin/mopd/moptrace/moptrace.c
89
interface = argv[optind++];
usr.sbin/mopd/moptrace/moptrace.c
91
if ((AllFlag && interface) ||
usr.sbin/mopd/moptrace/moptrace.c
92
(!AllFlag && interface == 0) ||
usr.sbin/mopd/moptrace/moptrace.c
99
deviceInitOne(interface);
usr.sbin/mopd/otherOS/pf-snit.c
109
strncpy(ifr.ifr_name, interface, sizeof(ifr.ifr_name));
usr.sbin/mopd/otherOS/pf-snit.c
226
pfAddMulti(s, interface, addr)
usr.sbin/mopd/otherOS/pf-snit.c
228
char *interface, *addr;
usr.sbin/mopd/otherOS/pf-snit.c
233
strncpy(ifr.ifr_name, interface, sizeof (ifr.ifr_name) -1);
usr.sbin/mopd/otherOS/pf-snit.c
262
pfDelMulti(s, interface, addr)
usr.sbin/mopd/otherOS/pf-snit.c
264
char *interface, *addr;
usr.sbin/mopd/otherOS/pf-snit.c
269
strncpy(ifr.ifr_name, interface, sizeof (ifr.ifr_name) -1);
usr.sbin/mopd/otherOS/pf-snit.c
68
pfTrans(interface)
usr.sbin/mopd/otherOS/pf-snit.c
69
char *interface;
usr.sbin/mopd/otherOS/pf-snit.c
79
pfInit(interface, mode, protocol, trans)
usr.sbin/mopd/otherOS/pf-snit.c
80
char *interface;
usr.sbin/mrouted/cfparse.y
112
| PHYINT interface {
usr.sbin/mrouted/cfparse.y
132
| TUNNEL interface addrname {
usr.sbin/mrouted/cfparse.y
322
interface : ADDR { $$ = $1; }
usr.sbin/mrouted/cfparse.y
97
%type <addr> interface addrname
usr.sbin/npppctl/npppctl.c
402
if (result->interface != NULL &&
usr.sbin/npppctl/npppctl.c
403
strcmp(result->interface, who->ifname) != 0)
usr.sbin/npppctl/parser.c
240
res.interface = word;
usr.sbin/npppctl/parser.h
45
const char *interface;
usr.sbin/npppd/npppd/parse.y
167
| grammar interface '\n'
usr.sbin/npppd/npppd/parse.y
935
interface : INTERFACE STRING ADDRESS in4_addr IPCP STRING {
usr.sbin/ospf6d/parse.y
505
areaoptsl : interface
usr.sbin/ospf6d/parse.y
532
interface : INTERFACE STRING {
usr.sbin/ospfctl/ospfctl.c
280
output->interface(ctliface, 1);
usr.sbin/ospfctl/ospfctl.c
282
output->interface(ctliface, 0);
usr.sbin/ospfctl/ospfctl.h
23
void (*interface)(struct ctl_iface *, int);
usr.sbin/ospfctl/output.c
660
.interface = show_interface,
usr.sbin/ospfd/parse.y
636
areaoptsl : interface
usr.sbin/ospfd/parse.y
677
interface : INTERFACE STRING {
usr.sbin/pppd/pppstats/pppstats.c
111
(void)strlcpy(req.ifr_name, interface, sizeof(req.ifr_name));
usr.sbin/pppd/pppstats/pppstats.c
128
(void)strlcpy(creq.ifr_name, interface, sizeof(creq.ifr_name));
usr.sbin/pppd/pppstats/pppstats.c
312
(void)strlcpy(interface, "ppp0", sizeof(interface));
usr.sbin/pppd/pppstats/pppstats.c
360
(void)strlcpy(interface, argv[0], sizeof(interface));
usr.sbin/pppd/pppstats/pppstats.c
362
if (sscanf(interface, "ppp%d", &unit) != 1 || unit < 0)
usr.sbin/pppd/pppstats/pppstats.c
363
errx(1, "invalid interface '%s' specified", interface);
usr.sbin/pppd/pppstats/pppstats.c
368
(void)strlcpy(ifr.ifr_name, interface, sizeof(ifr.ifr_name));
usr.sbin/pppd/pppstats/pppstats.c
370
errx(1, "nonexistent interface '%s' specified", interface);
usr.sbin/pppd/pppstats/pppstats.c
75
char interface[IFNAMSIZ];
usr.sbin/relayd/parse.y
186
%type <v.string> context hostname interface table value path
usr.sbin/relayd/parse.y
2234
interface : /* empty */ { $$ = NULL; }
usr.sbin/relayd/parse.y
543
rdroptsl : forwardmode TO tablespec interface {
usr.sbin/relayd/parse.y
609
| LISTEN ON STRING redirect_proto port interface pflog {
usr.sbin/ripd/parse.y
126
| grammar interface '\n'
usr.sbin/ripd/parse.y
337
interface : INTERFACE STRING {
usr.sbin/smtpd/parse.y
148
static int interface(struct listen_opts *);
usr.sbin/smtpd/parse.y
3316
if (interface(lo))