Searched refs:dev (Results 1 - 25 of 5985) sorted by relevance

1234567891011>>

/freebsd-11.0-release/contrib/opie/
H A Dconfig.testeflag2 if test -e README >/dev/null 2>/dev/null
4 if test -e a.non-existant-file >/dev/null 2>/dev/null
/freebsd-11.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/
H A Dtst.coverage.exe29 while true; do env > /dev/null; done
H A Dtst.emptystack.exe29 exec find / > /dev/null 2>&1
/freebsd-11.0-release/sys/dev/ppbus/
H A Dppbio.h26 * $FreeBSD: releng/11.0/sys/dev/ppbus/ppbio.h 55939 2000-01-14 00:18:06Z nsouch $
37 #define ppb_outsb_epp(dev,buf,cnt) \
38 (PPBUS_IO(device_get_parent(dev), PPB_OUTSB_EPP, buf, cnt, 0))
39 #define ppb_outsw_epp(dev,buf,cnt) \
40 (PPBUS_IO(device_get_parent(dev), PPB_OUTSW_EPP, buf, cnt, 0))
41 #define ppb_outsl_epp(dev,buf,cnt) \
42 (PPBUS_IO(device_get_parent(dev), PPB_OUTSL_EPP, buf, cnt, 0))
44 #define ppb_insb_epp(dev,buf,cnt) \
45 (PPBUS_IO(device_get_parent(dev), PPB_INSB_EPP, buf, cnt, 0))
46 #define ppb_insw_epp(dev,bu
[all...]
/freebsd-11.0-release/sys/dev/ofw/
H A Dofw_bus.h26 * $FreeBSD: releng/11.0/sys/dev/ofw/ofw_bus.h 265310 2014-05-04 04:01:26Z loos $
34 #include <dev/ofw/openfirm.h>
39 ofw_bus_get_compat(device_t dev) argument
42 return (OFW_BUS_GET_COMPAT(device_get_parent(dev), dev));
46 ofw_bus_get_model(device_t dev) argument
49 return (OFW_BUS_GET_MODEL(device_get_parent(dev), dev));
53 ofw_bus_get_name(device_t dev) argument
56 return (OFW_BUS_GET_NAME(device_get_parent(dev), de
60 ofw_bus_get_node(device_t dev) argument
67 ofw_bus_get_type(device_t dev) argument
74 ofw_bus_map_intr(device_t dev, phandle_t iparent, int icells, pcell_t *intr) argument
[all...]
/freebsd-11.0-release/sys/compat/linuxkpi/common/include/linux/
H A Dkdev_t.h34 #define MAJOR(dev) major((dev))
35 #define MINOR(dev) minor((dev))
39 old_encode_dev(dev_t dev) argument
41 return ((MAJOR(dev) << 8) | MINOR(dev));
/freebsd-11.0-release/sys/dev/mlx5/
H A Dsrq.h25 * $FreeBSD: releng/11.0/sys/dev/mlx5/srq.h 290650 2015-11-10 12:20:22Z hselasky $
31 #include <dev/mlx5/driver.h>
33 void mlx5_init_srq_table(struct mlx5_core_dev *dev);
34 void mlx5_cleanup_srq_table(struct mlx5_core_dev *dev);
/freebsd-11.0-release/sys/arm/ti/
H A Dti_hwmods.h31 clk_ident_t ti_hwmods_get_clock(device_t dev);
32 int ti_hwmods_contains(device_t dev, const char *hwmod);
35 int ti_hwmods_get_unit(device_t dev, const char *hwmod);
/freebsd-11.0-release/contrib/libpcap/
H A Dchmod_bpf18 chgrp admin /dev/bpf*
19 chmod g+rw /dev/bpf*
/freebsd-11.0-release/tools/regression/netinet/arphold/
H A Darphold.t5 make arphold 2>&1 > /dev/null
/freebsd-11.0-release/tools/regression/netinet/tcpfullwindowrst/
H A Dtcpfullwindowrst.t5 make tcpfullwindowrsttest 2>&1 > /dev/null
/freebsd-11.0-release/tools/test/sort/regression/
H A Dcmp.sh4 diff $1 $2 | grep '^-' >/dev/null && echo DIFFER: $1 $2 && exit 0 || exit 0
/freebsd-11.0-release/sys/dev/pci/
H A Dpci_iov.h26 * $FreeBSD: releng/11.0/sys/dev/pci/pci_iov.h 283670 2015-05-28 22:01:50Z jhb $
37 pci_iov_attach(device_t dev, struct nvlist *pf_schema, struct nvlist *vf_schema) argument
39 return (PCI_IOV_ATTACH(device_get_parent(dev), dev, pf_schema,
44 pci_iov_detach(device_t dev) argument
46 return (PCI_IOV_DETACH(device_get_parent(dev), dev));
H A Dfixup_pci.c32 __FBSDID("$FreeBSD: releng/11.0/sys/dev/pci/fixup_pci.c 254207 2013-08-11 06:57:57Z rpaulo $");
41 #include <dev/pci/pcivar.h>
42 #include <dev/pci/pcireg.h>
52 static int fixup_pci_probe(device_t dev);
53 static void fixwsc_natoma(device_t dev);
54 static void fixc1_nforce2(device_t dev);
74 fixup_pci_probe(device_t dev) argument
76 switch (pci_get_devid(dev)) {
78 fixwsc_natoma(dev);
81 fixc1_nforce2(dev);
88 fixwsc_natoma(device_t dev) argument
127 fixc1_nforce2(device_t dev) argument
[all...]
/freebsd-11.0-release/sys/dev/drm/
H A Ddrm_irq.c29 __FBSDID("$FreeBSD: releng/11.0/sys/dev/drm/drm_irq.c 283999 2015-06-04 20:36:16Z jhb $");
36 #include "dev/drm/drmP.h"
37 #include "dev/drm/drm.h"
39 int drm_irq_by_busid(struct drm_device *dev, void *data, argument
44 if ((irq->busnum >> 8) != dev->pci_domain ||
45 (irq->busnum & 0xff) != dev->pci_bus ||
46 irq->devnum != dev->pci_slot ||
47 irq->funcnum != dev->pci_func)
50 irq->irq = dev->irq;
61 struct drm_device *dev local
70 struct drm_device *dev = (struct drm_device *)arg; local
103 drm_vblank_cleanup(struct drm_device *dev) argument
124 drm_vblank_init(struct drm_device *dev, int num_crtcs) argument
155 drm_irq_install(struct drm_device *dev) argument
209 drm_irq_uninstall(struct drm_device *dev) argument
243 drm_control(struct drm_device *dev, void *data, struct drm_file *file_priv) argument
271 drm_vblank_count(struct drm_device *dev, int crtc) argument
276 drm_update_vblank_count(struct drm_device *dev, int crtc) argument
302 drm_vblank_get(struct drm_device *dev, int crtc) argument
329 drm_vblank_put(struct drm_device *dev, int crtc) argument
343 drm_modeset_ctl(struct drm_device *dev, void *data, struct drm_file *file_priv) argument
397 drm_wait_vblank(struct drm_device *dev, void *data, struct drm_file *file_priv) argument
486 drm_handle_vblank(struct drm_device *dev, int crtc) argument
[all...]
H A Dvia_drv.c32 __FBSDID("$FreeBSD: releng/11.0/sys/dev/drm/via_drv.c 203288 2010-01-31 14:30:39Z rnoland $");
34 #include "dev/drm/drmP.h"
35 #include "dev/drm/drm.h"
36 #include "dev/drm/via_drm.h"
37 #include "dev/drm/via_drv.h"
38 #include "dev/drm/drm_pciids.h"
45 static void via_configure(struct drm_device *dev) argument
47 dev->driver->driver_features =
50 dev->driver->buf_priv_size = sizeof(drm_via_private_t);
51 dev
83 struct drm_device *dev = device_get_softc(kdev); local
96 struct drm_device *dev = device_get_softc(kdev); local
[all...]
/freebsd-11.0-release/sys/ofed/drivers/infiniband/hw/mthca/
H A Dmthca_uar.c38 int mthca_uar_alloc(struct mthca_dev *dev, struct mthca_uar *uar) argument
40 uar->index = mthca_alloc(&dev->uar_table.alloc);
44 uar->pfn = (pci_resource_start(dev->pdev, 2) >> PAGE_SHIFT) + uar->index;
49 void mthca_uar_free(struct mthca_dev *dev, struct mthca_uar *uar) argument
51 mthca_free(&dev->uar_table.alloc, uar->index);
54 int mthca_init_uar_table(struct mthca_dev *dev) argument
58 ret = mthca_alloc_init(&dev->uar_table.alloc,
59 dev->limits.num_uars,
60 dev->limits.num_uars - 1,
61 dev
72 mthca_cleanup_uar_table(struct mthca_dev *dev) argument
[all...]
H A Dmthca_pd.c39 int mthca_pd_alloc(struct mthca_dev *dev, int privileged, struct mthca_pd *pd) argument
46 pd->pd_num = mthca_alloc(&dev->pd_table.alloc);
51 err = mthca_mr_alloc_notrans(dev, pd->pd_num,
56 mthca_free(&dev->pd_table.alloc, pd->pd_num);
62 void mthca_pd_free(struct mthca_dev *dev, struct mthca_pd *pd) argument
65 mthca_free_mr(dev, &pd->ntmr);
66 mthca_free(&dev->pd_table.alloc, pd->pd_num);
69 int mthca_init_pd_table(struct mthca_dev *dev) argument
71 return mthca_alloc_init(&dev->pd_table.alloc,
72 dev
77 mthca_cleanup_pd_table(struct mthca_dev *dev) argument
[all...]
/freebsd-11.0-release/sys/boot/kshim/
H A Dbsd_global.h35 #include <dev/usb/usb_freebsd_loader.h>
36 #include <dev/usb/usb_endian.h>
37 #include <dev/usb/usb.h>
38 #include <dev/usb/usbdi.h>
39 #include <dev/usb/usb_core.h>
40 #include <dev/usb/usb_debug.h>
41 #include <dev/usb/usb_process.h>
42 #include <dev/usb/usb_busdma.h>
43 #include <dev/usb/usb_dynamic.h>
44 #include <dev/us
[all...]
/freebsd-11.0-release/etc/rc.d/
H A Dbluetooth75 if expr "$_line" : "[a-zA-Z0-9_]*=" > /dev/null 2>&1; then
94 dev=$1
100 ngctl mkpeer ${dev}: hci ${hook} drv \
101 > /dev/null 2>&1 || return 1
103 ngctl name ${dev}:${hook} ${dev}hci \
104 > /dev/null 2>&1 || return 1
106 ngctl msg ${dev}hci: set_debug ${bluetooth_device_hci_debug_level} \
107 > /dev/null 2>&1 || return 1
110 ngctl mkpeer ${dev}hc
[all...]
/freebsd-11.0-release/sys/contrib/dev/acpica/include/
H A Dacpi.h56 #include <contrib/dev/acpica/include/platform/acenv.h> /* Environment-specific items */
57 #include <contrib/dev/acpica/include/acnames.h> /* Common ACPI names and strings */
58 #include <contrib/dev/acpica/include/actypes.h> /* ACPICA data types and structures */
59 #include <contrib/dev/acpica/include/acexcep.h> /* ACPICA exceptions */
60 #include <contrib/dev/acpica/include/actbl.h> /* ACPI table definitions */
61 #include <contrib/dev/acpica/include/acoutput.h> /* Error output and Debug macros */
62 #include <contrib/dev/acpica/include/acrestyp.h> /* Resource Descriptor structs */
63 #include <contrib/dev/acpica/include/acpiosxf.h> /* OSL interfaces (ACPICA-to-OS) */
64 #include <contrib/dev/acpica/include/acpixf.h> /* ACPI core subsystem external interfaces */
65 #include <contrib/dev/acpic
[all...]
/freebsd-11.0-release/tests/sys/geom/class/raid3/
H A D12_test.sh16 dd if=/dev/random of=/dev/${us0} count=$nblocks1 >/dev/null 2>&1
17 dd if=/dev/random of=/dev/${us1} count=$nblocks1 >/dev/null 2>&1
18 dd if=/dev/random of=/dev/${us2} count=$nblocks1 >/dev/null 2>&1
20 graid3 label -w $name /dev/
[all...]
/freebsd-11.0-release/sys/dev/drm2/
H A Ddrm_context.c37 __FBSDID("$FreeBSD: releng/11.0/sys/dev/drm2/drm_context.c 280183 2015-03-17 18:50:33Z dumbbell $");
46 #include <dev/drm2/drmP.h>
55 * \param dev DRM device.
62 void drm_ctxbitmap_free(struct drm_device * dev, int ctx_handle) argument
65 dev->ctx_bitmap == NULL) {
71 DRM_LOCK(dev);
72 clear_bit(ctx_handle, dev->ctx_bitmap);
73 dev->context_sareas[ctx_handle] = NULL;
74 DRM_UNLOCK(dev);
80 * \param dev DR
86 drm_ctxbitmap_next(struct drm_device * dev) argument
130 drm_ctxbitmap_init(struct drm_device * dev) argument
162 drm_ctxbitmap_cleanup(struct drm_device * dev) argument
189 drm_getsareactx(struct drm_device *dev, void *data, struct drm_file *file_priv) argument
222 drm_setsareactx(struct drm_device *dev, void *data, struct drm_file *file_priv) argument
264 drm_context_switch(struct drm_device * dev, int old, int new) argument
292 drm_context_switch_complete(struct drm_device *dev, struct drm_file *file_priv, int new) argument
320 drm_resctx(struct drm_device *dev, void *data, struct drm_file *file_priv) argument
351 drm_addctx(struct drm_device *dev, void *data, struct drm_file *file_priv) argument
387 drm_modctx(struct drm_device *dev, void *data, struct drm_file *file_priv) argument
402 drm_getctx(struct drm_device *dev, void *data, struct drm_file *file_priv) argument
423 drm_switchctx(struct drm_device *dev, void *data, struct drm_file *file_priv) argument
443 drm_newctx(struct drm_device *dev, void *data, struct drm_file *file_priv) argument
465 drm_rmctx(struct drm_device *dev, void *data, struct drm_file *file_priv) argument
[all...]
/freebsd-11.0-release/sys/dev/drm2/radeon/
H A Dradeon_kms.h3 __FBSDID("$FreeBSD: releng/11.0/sys/dev/drm2/radeon/radeon_kms.h 254885 2013-08-25 19:37:15Z dumbbell $");
8 #include <dev/drm2/drmP.h>
10 int radeon_driver_load_kms(struct drm_device *dev, unsigned long flags);
11 int radeon_driver_unload_kms(struct drm_device *dev);
13 int radeon_driver_firstopen_kms(struct drm_device *dev);
14 void radeon_driver_lastclose_kms(struct drm_device *dev);
15 int radeon_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv);
16 void radeon_driver_postclose_kms(struct drm_device *dev,
18 void radeon_driver_preclose_kms(struct drm_device *dev,
20 u32 radeon_get_vblank_counter_kms(struct drm_device *dev, in
[all...]
/freebsd-11.0-release/sys/dev/etherswitch/arswitch/
H A Darswitch_reg.h26 * $FreeBSD: releng/11.0/sys/dev/etherswitch/arswitch/arswitch_reg.h 262015 2014-02-17 05:51:37Z adrian $
31 extern void arswitch_writedbg(device_t dev, int phy, uint16_t dbg_addr,
33 extern void arswitch_writemmd(device_t dev, int phy, uint16_t dbg_addr,
36 extern int arswitch_readreg(device_t dev, int addr);
37 extern int arswitch_writereg(device_t dev, int addr, int value);
38 extern int arswitch_modifyreg(device_t dev, int addr, int mask, int set);
41 extern int arswitch_readreg_lsb(device_t dev, int addr);
42 extern int arswitch_readreg_msb(device_t dev, int addr);
44 extern int arswitch_writereg_lsb(device_t dev, int addr, int data);
45 extern int arswitch_writereg_msb(device_t dev, in
[all...]

Completed in 307 milliseconds

1234567891011>>