| /f-stack/freebsd/sys/ |
| H A D | types.h | 107 typedef __dev_t dev_t; /* device number or struct cdev */ typedef 391 __major(dev_t _d) in __major() 397 __minor(dev_t _d) in __minor() 402 static __inline dev_t 405 return (((dev_t)(_Major & 0xffffff00) << 32) | ((_Major & 0xff) << 8) | in __makedev() 406 ((dev_t)(_Minor & 0xff00) << 24) | (_Minor & 0xffff00ff)); in __makedev()
|
| H A D | stat.h | 58 typedef __dev_t dev_t; typedef 161 dev_t st_dev; /* inode's device */ 169 dev_t st_rdev; /* device type */ 392 int mknod(const char *, mode_t, dev_t); 403 int mknodat(int, const char *, mode_t, dev_t);
|
| H A D | snoop.h | 32 #define SNPGTTY _IOR('T', 89, dev_t)
|
| H A D | param.h | 241 #define NODEV (dev_t)(-1) /* non-existent device */
|
| H A D | tty.h | 214 dev_t tty_udev(struct tty *tp);
|
| H A D | vnode.h | 210 dev_t xvu_rdev; /* maj/min, if VBLK/VCHR */ 212 dev_t xvu_dev; /* device, if VDIR/VREG/VLNK */ 287 dev_t va_fsid; /* filesystem id */ 297 dev_t va_rdev; /* device the special file represents */
|
| /f-stack/freebsd/contrib/ipfilter/netinet/ |
| H A D | mlfk_ipl.c | 58 static dev_t ipf_devs[IPL_LOGSIZE]; 77 static int ipfopen __P((dev_t, int, int, struct proc *)); 78 static int ipfclose __P((dev_t, int, int, struct proc *)); 79 static int ipfread __P((dev_t, struct uio *, int)); 80 static int ipfwrite __P((dev_t, struct uio *, int)); 154 static int ipfpoll(dev_t dev, int events, struct proc *td); 423 ipfpoll(dev_t dev, int events, struct proc *td) in ipfpoll() 480 dev_t dev; 520 dev_t dev; 548 dev_t dev; [all …]
|
| /f-stack/freebsd/security/mac_veriexec/ |
| H A D | mac_veriexec_internal.h | 79 int mac_veriexec_metadata_get_file_flags(dev_t fsid, long fileid, 82 mac_veriexec_metadata_get_file_info(dev_t fsid, long fileid, 86 int mac_veriexec_metadata_unmounted(dev_t fsid, struct thread *td);
|
| H A D | veriexec_metadata.c | 53 dev_t fsid; /**< file system identifier of the mount point */ 101 get_veriexec_file(struct veriexec_devhead *head, dev_t fsid, long fileid, in get_veriexec_file() 230 mac_veriexec_metadata_has_file(dev_t fsid, long fileid, unsigned long gen) in mac_veriexec_metadata_has_file() 251 free_veriexec_dev(dev_t fsid, struct veriexec_devhead *head) in free_veriexec_dev() 302 find_veriexec_dev(dev_t fsid, struct veriexec_devhead *head) in find_veriexec_dev() 402 mac_veriexec_metadata_unmounted(dev_t fsid, struct thread *td) in mac_veriexec_metadata_unmounted() 437 mac_veriexec_metadata_get_file_flags(dev_t fsid, long fileid, unsigned long gen, in mac_veriexec_metadata_get_file_flags() 607 mac_veriexec_metadata_add_file(int file_dev, dev_t fsid, long fileid, in mac_veriexec_metadata_add_file() 749 mac_veriexec_metadata_get_file_info(dev_t fsid, long fileid, unsigned long gen, in mac_veriexec_metadata_get_file_info()
|
| H A D | mac_veriexec.h | 154 int mac_veriexec_metadata_add_file(int file_dev, dev_t fsid, long fileid, 158 int mac_veriexec_metadata_has_file(dev_t fsid, long fileid,
|
| /f-stack/freebsd/contrib/openzfs/include/os/linux/spl/sys/ |
| H A D | sunddi.h | 35 #define DDI_DEV_T_NONE ((dev_t)-1) 36 #define DDI_DEV_T_ANY ((dev_t)-2)
|
| H A D | vnode.h | 107 dev_t va_rdev; /* dev */
|
| /f-stack/dpdk/kernel/freebsd/nic_uio/ |
| H A D | nic_uio.c | 35 device_t dev_t; member 112 if (PCI_BAR_IO(pci_read_config(sc->dev_t, sc->bar_id[bar], 4))) in nic_uio_mmap_single() 113 sc->bar_res[bar] = bus_alloc_resource_any(sc->dev_t, SYS_RES_IOPORT, in nic_uio_mmap_single() 116 sc->bar_res[bar] = bus_alloc_resource_any(sc->dev_t, SYS_RES_MEMORY, in nic_uio_mmap_single() 125 device_printf(sc->dev_t, "Bar %u @ %lx, size %lx\n", bar, in nic_uio_mmap_single() 216 sc->dev_t = dev; in nic_uio_attach()
|
| /f-stack/freebsd/contrib/openzfs/include/os/freebsd/spl/sys/ |
| H A D | sunddi.h | 37 #define DDI_DEV_T_NONE ((dev_t)-1) 38 #define DDI_DEV_T_ANY ((dev_t)-2)
|
| H A D | sysmacros.h | 163 (dev_t)(((dev_t)(((x) >> O_BITSMINOR) & O_MAXMAJ) << L_BITSMINOR) | \
|
| /f-stack/lib/include/sys/ |
| H A D | vnode.h | 99 dev_t va_fsid; /* filesystem id */ 101 dev_t va_rdev; /* device the special file represents */
|
| /f-stack/freebsd/contrib/openzfs/config/ |
| H A D | kernel-blkdev.m4 | 157 dnl # 5.11 API, lookup_bdev() takes dev_t argument. 167 dev_t dev; 193 AC_MSG_CHECKING([whether lookup_bdev() wants dev_t arg]) 198 [lookup_bdev() wants dev_t arg])
|
| /f-stack/tools/compat/include/bsm/ |
| H A D | audit.h | 178 dev_t port; 184 dev_t at_port;
|
| /f-stack/freebsd/vm/ |
| H A D | vm_param.h | 98 dev_t xsw_dev;
|
| H A D | swap_pager.h | 57 dev_t sw_dev;
|
| /f-stack/tools/compat/include/sys/ |
| H A D | user.h | 139 dev_t ki_tdev; /* controlling tty dev */ 457 dev_t kve_fsid; /* dev_t of vnode location */
|
| /f-stack/lib/ |
| H A D | ff_compat.c | 123 dev_t
|
| /f-stack/tools/libutil/ |
| H A D | pidfile.c | 53 dev_t pf_dev;
|
| /f-stack/freebsd/contrib/openzfs/module/os/linux/zfs/ |
| H A D | zvol_os.c | 53 dev_t zvo_dev; /* device id */ 71 dev_t dev = 0; in zvol_is_zvol_impl() 730 zvol_alloc(dev_t dev, const char *name) in zvol_alloc()
|
| /f-stack/freebsd/contrib/openzfs/include/sys/ |
| H A D | zfs_znode.h | 257 extern dev_t zfs_cmpldev(uint64_t);
|